React本机缓存
基于 (或随附的MemoryStore)构建的LRU缓存,并自动修剪最近最少使用的项目。
安装
运行以下命令。
npm install --save react-native-cache
导入库。
import { Cache } from "react-native-cache" ;
用法
您可以使用以下方法初始化缓存。
const cache = new Cache ( {
namespace : "myapp" ,
policy : {
maxEntries : 50000 , // if unspecified, it can have unlimited entries
stdTTL : 0 // the standard ttl as number in seconds, default: 0 (unl
评论0
最新资源