jk-gan / redux-flipper

Redux middleware for React Native for Flipper
MIT License
160 stars 21 forks source link

Is the time presented in the redux-debugger reliable? #35

Closed marqroldan closed 3 years ago

marqroldan commented 3 years ago

This is probably just my lack of experience with Redux but it's making me doubt the amount of time an action takes because even if I just return the original state, it still takes around 350-400ms average.

I haven't checked any other debugger for redux, I'm currently using this in react-native.

plwai commented 3 years ago

This is because your state tree is too big to be parsed in the flipper native send API. ( #27 for more details).

Currently, the only solution is reducing the size by using blacklist and whitelist features.

marqroldan commented 3 years ago

Hey, that was fast!

And I found out about the other issues just now, apologies for not looking further. Thanks!