What's different with Redux ?

They are two frameworks for solving problems at different layers.

Redux is a framework focused on state management; Fish Redux is an application framework based on Redux for state management.

The application framework not only solves the problem of state management, but also solves the problems of divide and conquer, communication, data drive, decoupling and so on.

Fish Redux solves the contradiction between concentration and division.

Redux completes the merge process from the small Reducers to the main Reducer by the user manually organizing the code;

Fish Redux automatically completes the merge process from the small Reducers to the main Reducer by explicitly expressing the dependencies between components;

What's the difference between 'Fish Redux' and 'Redux' ? - 图1

Fish Redux provides a simple component abstract model

It is a combination of simple 3 functions

What's the difference between 'Fish Redux' and 'Redux' ? - 图2

Fish Redux provides an abstract component model of the Adapter

In addition to the underlying component model, Fish Redux provides an Adapter abstraction model to solve the performance problems of large cells on ListView.

Through the upper abstraction, we get the logical ScrollView, the performance of the ListView.

What's the difference between 'Fish Redux' and 'Redux' ? - 图3