asyncstorage-down
asyncstorage-down copied to clipboard
A leveldown API implementation that maps to AsyncStorage in React Native
React-Native AsyncStorage has been deprecated. This is updating to the new library.
fixes #10 Avoids the warning because of the usage of ReactNative.AsyncStorage
Using AsyncStorage in react-native 0.60 gives a warning that it will be removed in next version. We should switch to @react-native-community/async-storage to fix this
since we have all the keys in memory, we could make levelup's createReadStream work faster by taking advantage of AsyncStorage.multiGet and having the iterator preload in batches, iterate over cached...