react-native-mmkv
react-native-mmkv copied to clipboard
⚡️ The fastest key/value storage for React Native. ~30x faster than AsyncStorage!
Hi there, I've encounter some segfaults today from accessing the storage via both the app and the widget on android. After a little bit of digging it seems like the...
Great library, Marc. I'm trying to migrate from AsyncStorage to MMKV and your "MIGRATE_FROM_ASYNC_STORAGE.md" instructions so far seem spot on. Everything seems to work until the very end of migrateFromAsyncStorage(),...
It would be great, for performance, to get a batch of keys in one async off the JS thread batch.
The change introducing app groups moved the storage location when the app groups property is set which is a breaking change - https://github.com/mrousavy/react-native-mmkv/pull/402/files#diff-b667beab6bbb6d80aab761c6781a9a7fea5812e5814d98666080a2ec6edb38dfR46 Upgrading to 2.10.0 causes our users to...
I'm trying to migrate my app from AsyncStorage to MMKV. I'm using redux toolkit and redux toolkit. I've found some resources that are using that but I'm not able to...
I've been debugging my app perfectly on iOS. I now need to debug also on Android. When I pick debug from the menu I get the following error: `Failed to...
MMKV provide function (Global Expiration) ``` // expire in a day mmkv.enableAutoKeyExpire(MMKV.ExpireInDay); // MMKV.ExpireInDay = 24 * 60 * 60 // enable auto key expiration without global duration mmkv.enableAutoKeyExpire(MMKV.ExpireNever); //...
Sorry to make an issue for this, but I cannot seem to find an answer on neither docs for this library, nor the underlying MMKV docs. When using react-native-mmkv do...
I'm using this to share data between a share extension and a react native app and noticing an issues that is pretty easily reproducible. Observed behavior (when react native app...
Add support set/get object, array, ...