An extended cache library.
一般的请求数据的形式是,页面加载的时候,从服务端获取数据,然后等待数据返回之后,进行页面渲染:
但这种模式,会受到服务端接口耗时,网络环境等因素影响到加载性能。
对于加载性能要求高的页面(如首页),一般的 Web 开发我们有很多解决方案(如服务端渲染,服务端缓存,SSR 等)。
但是也有一些环境不能使用这种技术(如微信小程序)。
Super Cache 提供了一个中间数据缓存的解决方案:
Super Cache 的解决思路:
这种解决方案,舍弃了一点数据的实时性(非第一次请求,只能获取上一次最新数据),大大提高了前端的加载性能。
适合的场景:
安装
$ npm install @jerryc/super-cache
载入模块
import SuperCache from '@brightwe/super-cache';
const cache = new SuperCache();
set 、 get、remove、removeAll
cache.set('name', 'jc');
cache.get('name').then((value) => console.log(value));
cache.remove('name');
cache.removeAll();
通过 adapter 定义缓存的数据如何获取
// 支持异步返回,Promise
cache.addAdapter('name', () => {
return Promise
.resolve()
.then(() => API.request('name'))
});
// 支持同步返回
cache.addAdapter('name', () => ({'jc'}));
适配器的高级配置
在 new SuperCache()
、addAdapter()
与 get()
方法中,都支持对 adapter 进行配置:
const adapterOptions = {
// 是否忽略缓存,默认为 false。如果为 true,则 get() 每次都会请求 adapter 获取数据
ignoreCache: false,
// 是否更新缓存,默认为 true。如果为 false,则 get() 请求回来的数据,不会更新到缓存中
updateCache: true,
// get() 操作的回调钩子
beforeGet: function(value) {
// ...
// 允许修改该次 get 操作的 adapterOptions,且支持异步的形式。
return Promise.resolve(newAdapterOptions);
},
}
// 配置会作用于 cache 范围内的所有 adapter
const cache = new SuperCache({
adapterOptions,
});
// 配置会作用于该 adapter 范围内 cache.addAdapter(key, { data: function() {...}, ...adapterOptions, });
// 配置只会作用于该次 get 操作 cache.get(key, { adapterOptions, })
adapterOptions 可以设置的值参考:
2. 自定义 storage
storage 默认是存储到 memory,但在生产环境中是不科学的做法,你可以自定义数据的存储
```javascript
const cache = new SuperCache({
storage: {
get(key) {
// this 指针等于当前 cache 实例
// 自定义数据的获取
const value = seltStorage.get(key);
// 然后返回结果,支持 Promise 和非 Promise
return value;
},
set(key, value) {
// this 指针等于当前 cache 实例
// 自定义数据的存储
selfStorage.set(key, value);
// 然后返回结果,支持 Promise 和非 Promise
return value;
},
remove(key) {
// this 指针等于当前 cache 实例
return selfStorage.remove(key);
},
removeAll() {
// this 指针等于当前 cache 实例
return selfStorage.removeAll();
},
// 设置缓存 key 的前缀,最终会成为:super-cache:${key}
keyPrefix: 'super-cache',
},
});
自定义的配置
SuperCache 的实例和 adapter 都支持配置自定义的配置信息:
// 给 SuperCache 实例配置自定义配置
const customOptions = {
ttl: 60 * 1000,
}
const cache = new SuperCache({
extra: customOptions,
});
// true
cache.extra === customOptions;
// 给 adapter 配置自定义配置 cache.addAdapter('name', { extra: customOptions, data() {...}, });
// true cache.getAddapter('name').extra === customOptions;
4. 额外的配置信息
`SuperCache()` 和 `cacheInstance.addAdapter()` 都支持配置额外的自定义字段:
```javascript
const cache = new SuperCache({
extra: { name: 'jc' },
});
// { name: 'jc' }
cache.extra;
cache.addAdapter('name', {
extra: { name: 'david' },
data() {...},
});
// { name: 'david' }
cache.getAdapter('name').extra;
利用这种特性,我们可以满足 storage 中针对不同的 adapter 进行不同的缓存策略:
const cache = new SuperCache({
extra: {
// 默认缓存时间是 60s
ttl: 60 * 1000,
},
storage: {
get(key) {...},
set(key, value) {
// 获取自定义配置信息
const adapterTTL = this.getAdapter(key).extra.ttl;
const ttl = this.extra.ttl;
// 调用自定义的存储库
myStorage.save(key, { ttl: ttl || adapterTTL });
},
remove(key) {...},
removeAll() {...},
},
});
cache.addAdapter('name', {
extra: {
// 针对于 name 的缓存,只做 30s 时间缓存
ttl: 30 * 1000,
},
data() {...},
});
Class SuperCache.
Kind: global class
Promise
object
Promise
Promise
Create an instance of SuperCache
Param | Type | Description |
---|---|---|
options | object |
配置信息 |
[options.storage] | object |
自定义数据存储器 |
options.storage.set | storageSet |
数据保存 |
options.storage.get | storageGet |
数据获取 |
[options.storage.remove] | storageRemove |
数据删除 |
[options.storage.removeAll] | storageRemoveAll |
删除所有数据 |
[options.storage.keyPrefix] | string |
数据库缓存 key 的前缀,默认:'super-cache' |
[options.adapterOptions] | AdapterOptions |
adapter 的全局配置 |
[options.extra] | * |
额外的配置信息,可以通过 this.extra 获得 |
[options.log] | object |
允许改变内部的 log 库 |
Promise
Get value
Kind: instance method of SuperCache
Returns: Promise
- 返回一个 Promise 对象,该对象返回需要获取的数据
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
[options.adapterOptions] | AdapterOptions |
adapter 配置 |
Set value
Kind: instance method of SuperCache
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
value | * |
storage.remove 的返回结果 |
Remove value
Kind: instance method of SuperCache
Param | Type | Description |
---|---|---|
key | string |
需要删除数据的 key |
value | * |
storage.remove 的返回结果 |
object
Get adapter by key
Kind: instance method of SuperCache
Returns: object
- 返回 adapter 对象
Param | Type |
---|---|
key | string |
Promise
Get value by adapter
Kind: instance method of SuperCache
Returns: Promise
- 返回一个 Promise 对象,该对象返回需要获取的数据
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
Promise
Get and Update value by adapter
Kind: instance method of SuperCache
Returns: Promise
- 返回一个 Promise 对象,该对象返回需要获取的数据
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
Add adapter
Kind: instance method of SuperCache
Param | Type | Description |
---|---|---|
key | string |
|
adapter | object | function |
如果是 object,参数看下面,如果是 function,则会变成 adapter.data = adapter |
adapter.data | adapterDataFunction |
在调用 adapter,通过该函数来获取数据 |
[adapter.options] | AdapterOptions |
adapter 配置 |
[options.extra] | * |
额外的配置信息,供外部灵活配置,可以通过 this.getAdapters(key).extra 获得 * |
Adapter Default Options
Kind: global constant
Typeof: Object
AdapterOptions
Properties
Name | Type | Default | Description |
---|---|---|---|
[ignoreCache] | boolean |
false |
是否忽略缓存 |
[updateCache] | boolean |
true |
是否在数据返回之后更新缓存 |
[beforeGet] | optionsBeforeGet |
undefinded |
在调用 adapter 获取数据之前的钩子方法 |
function
Kind: global typedef
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
data | * |
storage.get 的返回值 |
function
Kind: global typedef
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
data | * |
storage.remove 的返回值 |
function
Kind: global typedef
Param | Type | Description |
---|---|---|
data | * |
storage.removeAll 的返回值 |
Promise
| *
Kind: global typedef
Returns: Promise
| *
- 如果返回非 Promise,内部会转化为 Promise
Param | Type | Description |
---|---|---|
key | string |
需要获取数据的 key |
object
beforeGet callback
Kind: global typedef
Returns: object
- runtimeOpt 运行时的配置信息,会暂时覆盖实例的配置
Param | Type | Description |
---|---|---|
cache | * |
存储在 storage 的缓存数据,如果没有则为 undefined |
Promise
data callback
Kind: global typedef
Returns: Promise
- 需要返回一个 Promise 对象,该对象返回需要存储的数据
Adapter Default Options
function
function
function
Promise
| *
object
beforeGet callback
Promise
data callback
Generated using TypeDoc