Skip to content

MGenteluci/react-native-cache-storage

Repository files navigation

Cache Storage

coverage pipeline

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 0 is 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

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published