Reputation: 73
AsyncStorage.getItem
takes long time to get data, sometimes no response at all. I do understand that getItem
is async
function. But the amount of waiting time is not acceptable and not reasonable.
Anyone facing such issue? any workaround?
the react-native
version is 0.55.4
Upvotes: 2
Views: 935
Reputation: 11
If anyone is is still having this issue with RN >= 0.60 & Async-Storage >= 1.6.1, I solved the issue by setting a dedicated thread executor in android as outlined here: https://github.com/react-native-community/async-storage/blob/LEGACY/docs/advanced/DedicatedExecutor.md
Upvotes: 1