0.0.1 • Published 2 years ago

@icreate/ics-chromely-plugin-caching-memory-js-sdk v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Usage

npm i @icreate/ics-chromely-plugin-caching-memory-js-sdk

Features

  • MemoryCache:增、查、删除缓存

Importing library

You can import the generated bundle to use the whole library generated by this starter:

import MemoryCache from '@icreate/ics-chromely-plugin-caching-memory-js-sdk'

使用MemoryCache

  // 获取缓存
  MemoryCache.getCache(key: string): Promise<any>
  // 设置缓存
  MemoryCache.setCache(key: string, value: string): Promise<any> 
  //删除缓存
  MemoryCache.removeCache(key: string): Promise<any>