AVRO – Environment Setup
Apache software foundation provides Avro with various releases. You can download the required release from Apache mirrors. Let us see, how to set up the environment to work with Avro…
Apache software foundation provides Avro with various releases. You can download the required release from Apache mirrors. Let us see, how to set up the environment to work with Avro…
Data is serialization for two objectives − For persistent storageTo transport the data over network What is Serialization? Serialization is the process of translating data structures or objects state into…
To transfer data over a network or for its persistent storage, you need to serialize the data. Prior to the serialization APIs provided by Java and Hadoop, we have a special utility,…
In this guide we will discuss Ext.container.viewport container in Ext.js . Ext.container.Viewport − Viewport is a container that automatically resizes itself to the size of the whole browser window. You…
Here is a small example of react and Redux application. You can also try developing small apps. Sample code for increase or decrease counter is given below − This is…
In the previous chapters, we have learnt what is Redux and how it works. Let us now check the integration of the view part with Redux. You can add any…
Testing Redux code is easy as we mostly write functions, and most of them are pure. So we can test it without even mocking them. Here, we are using JEST…
Redux-Devtools provide us debugging platform for Redux apps. It allows us to perform time-travel debugging and live editing. Some of the features in official documentation are as follows − It…
Redux itself is synchronous, so how the async operations like network request work with Redux? Here middlewares come handy. As discussed earlier, reducers are the place where all the execution logic is written. Reducer…
Reducers are a pure function in Redux. Pure functions are predictable. Reducers are the only way to change states in Redux. It is the only place where you can write…