Skip to content

选项

参数描述
type缓存类型: localsession
expire缓存有效期 (默认为0 表示永久缓存)
prefix缓存前缀(默认为空)
serialize缓存序列化方法
deserialize缓存反序列化方法

默认配置

js
{
  type: "local",
  expire: 0,
  prefix: "",
  serialize: JSON.stringify,
  deserialize: JSON.parse,
}

基于 MIT 许可发布