文件名称:flat-cache:简单愚蠢的键值存储,使用文件来持久存储数据
文件大小:38KB
文件格式:ZIP
更新时间:2024-06-02 17:57:43
JavaScript
平面缓存 简单愚蠢的键/值存储,使用文件来保存数据 安装 npm i --save flat-cache 用法 var flatCache = require ( 'flat-cache' ) // loads the cache, if one does not exists for the given // Id a new one will be prepared to be created var cache = flatCache . load ( 'cacheId' ) ; // sets a key on the cache cache . setKey ( 'key' , { foo : 'var' } ) ; // get a key from the cache cache . getKey ( 'key' ) // { foo: 'var' } // fetch th
【文件预览】:
flat-cache-master
----.eslintrc.json(596B)
----.gitignore(1KB)
----package.json(3KB)
----package-lock.json(92KB)
----src()
--------utils.js(966B)
--------del.js(292B)
--------cache.js(5KB)
----.travis.yml(62B)
----changelog.md(16KB)
----LICENSE(1KB)
----README.md(3KB)
----test()
--------runner.js(859B)
--------specs()