You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
redux-bees caches API calls, but cached data is hardly useful when a developer needs to accurately determine, for instance, when a record was last saved.
redux-bees offers two official solutions to this problem, refetch and invalidateRequests, but I have not been able to make either work. On a recent project, even when I used these methods of getting fresh data, I was still getting cached data from redux-bees. I worked around this by manually adding query parameters to requests to bust the cache.
We should investigate whether refetch and invalidateRequests work, and if not, why not.
The text was updated successfully, but these errors were encountered:
redux-bees caches API calls, but cached data is hardly useful when a developer needs to accurately determine, for instance, when a record was last saved.
redux-bees offers two official solutions to this problem,
refetch
andinvalidateRequests
, but I have not been able to make either work. On a recent project, even when I used these methods of getting fresh data, I was still getting cached data from redux-bees. I worked around this by manually adding query parameters to requests to bust the cache.We should investigate whether
refetch
andinvalidateRequests
work, and if not, why not.The text was updated successfully, but these errors were encountered: