cache-async-adapter

时间:2024-03-24 20:54:40
【文件属性】:

文件名称:cache-async-adapter

文件大小:28KB

文件格式:ZIP

更新时间:2024-03-24 20:54:40

TypeScript

快取 异步缓存Redis或具有相同接口的本地缓存,可以进一步扩展 使用内存存储 import { CacheAdapterType , CacheFactory } from "@qest/cache-async-adapter" ; const cacheLocal = new CacheFactory ( ) . create ( CacheAdapterType . Local ) ; await cacheLocal . set ( 'key1' , { data : 'hello' } , 10000 ) ; // time in ms console . log ( await cacheLocal . get ( 'key1' ) ) ; // {data: 'hello'} 使用Redis存储 import { CacheAdapterType , CacheFactor


【文件预览】:
cache-async-adapter-master
----.gitignore(23B)
----tsconfig.json(412B)
----README.md(2KB)
----tsconfig.test.json(399B)
----azure-pipelines.yml(523B)
----test()
--------mocha.opts(93B)
----.prettierrc(159B)
----package.json(2KB)
----tslint.json(3KB)
----src()
--------cache-factory()
--------interfaces.ts(474B)
--------adapters()
--------index.ts(91B)
----yarn.lock(43KB)

网友评论