From 55f51e33c7a4a5546dfb3d3cf30d1cc88e296857 Mon Sep 17 00:00:00 2001 From: caijf <369756941@qq.com> Date: Wed, 15 May 2024 14:05:55 +0800 Subject: [PATCH] docs: update --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 469b14e..7217b1c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ pnpm add cache2 ```typescript import { Cache } from 'cache2'; -const myCache = new Cache(options); +const myCache = new Cache(options); // 默认命名空间为 'default',等同于 new Cache('default', options) myCache.set(key, value, ttl?); myCache.get(key); @@ -75,6 +75,8 @@ local.get('foo'); // undefined ``` +**⚠️ 注意:同一个命名空间的缓存是共享的。意味着命名空间名称相同的情况下,不同实例之间共用同一份缓存数据。建议自定义命名空间名称,避免不同实例的缓存数据冲突** + ## Cache 配置项 | 参数 | 说明 | 类型 | 默认值 |