TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Redux Sucks with React-Native

2 pointsby fjcaetanoover 6 years ago

2 comments

acemarkeover 6 years ago
Hi, I&#x27;m a Redux maintainer. I&#x27;ll repeat the comment I made on your blog for visibility.<p>Running your reducers is almost never the perf bottleneck - updating the UI is. Most slice reducers are either switch statements or lookup tables, in which case there&#x27;s effectively no work to do if the action doesn&#x27;t matter for this reducer. See our FAQ entry at [0] for more details.<p>If you have specific examples where Redux performance is an issue, please ping me @acemarke in Twitter or Reactiflux, and I&#x27;d be happy to offer advice.<p>[0] Performance: Won&#x27;t calling &quot;all my reducers&quot; for each action be slow? <a href="https:&#x2F;&#x2F;redux.js.org&#x2F;faq&#x2F;performance#wont-calling-all-my-reducers-for-each-action-be-slow" rel="nofollow">https:&#x2F;&#x2F;redux.js.org&#x2F;faq&#x2F;performance#wont-calling-all-my-red...</a>
评论 #18542695 未加载
fjcaetanoover 6 years ago
There, I said it.