asyncstorage-down icon indicating copy to clipboard operation
asyncstorage-down copied to clipboard

A leveldown API implementation that maps to AsyncStorage in React Native

Results 4 asyncstorage-down issues
Sort by recently updated
recently updated
newest added

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...