react-native-cache-storage
v0.0.4
Published
 
Downloads
19
Readme
Cache Storage
Cache Storage is a key value storage build on top of AsyncStorage, it uses a combination of memory and AsyncStorage to provide fast responses.
Usage
import CacheStorage from 'react-native-cache-storage';
const cacheStorage = new CacheStorage();setItem
setItem(key: string, value: string, ttl?: number): Promise<void>;- ttl:
- in seconds
- default:
300 - if
0is informed item will never expire.
getItem
getItem(key: string): Promise<string | null>;multiSet
multiSet(keyValuePairs: string[][], ttl: number = 300): Promise<void>;clear
Remove all keys saved in CacheStorage.
clear(): Promise<void>;Only affect keys saved by CacheStorage
