Hello all,
I'm building a 'complex' social english vocabulary 'game' in React/Redux and GraphQL/GraphCool
Is it a best practice to save all the state only to redux while the app is active, and only dispatch the user/game state to the backend in like 5 / 10 minute intervals, and / or when the user quits the app ?
It feels like mutating every state change might be spawning to many requests unnecessarily ?
Am I thinking in the right direction here ?
Thanks!