Aplikacje React Native często muszą przechowywać dane lokalnie — preferencje użytkownika, dane w cache'u, tokeny uwierzytelniania, treści offline. Dostępne opcje to AsyncStorage (klucz-wartość), MMKV (szybkie), SQLite i bezpieczne przechowywanie dla danych wrażliwych. Wybór odpowiedniego rozwiązania ma znaczenie.
Opcje przechowywania lokalnego
ASYNCSTORAGE → simple async KEY-VALUE storage (the common basic option):
→ store strings (serialize objects to JSON); for settings, small data, simple caching
→ async API; persists across app launches
MMKV → a very FAST key-value storage (by WeChat) — faster than AsyncStorage, synchronous;
popular modern choice for performance
SQLITE (e.g. expo-sqlite, react-native-sqlite, WatermelonDB) → relational DATABASE for
STRUCTURED/large data, queries, relationships, offline-first apps
SECURE STORAGE → expo-secure-store / react-native-keychain for SENSITIVE data (tokens,
credentials) — ENCRYPTED (keychain/keystore)
