From 1b3560b504b2e259d1dcc6b716c7b5f14460b5aa Mon Sep 17 00:00:00 2001 From: xucong <850806214@qq.com> Date: Tue, 13 May 2025 10:22:14 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=8F=90=E4=BA=A4=E7=BC=BA=E5=A4=B1=E7=9A=84?= =?UTF-8?q?=E4=B8=9C=E8=A5=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vendor/topthink/framework/src/think/facade/Cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/vendor/topthink/framework/src/think/facade/Cache.php b/vendor/topthink/framework/src/think/facade/Cache.php index 84e52a9..4924a5e 100644 --- a/vendor/topthink/framework/src/think/facade/Cache.php +++ b/vendor/topthink/framework/src/think/facade/Cache.php @@ -28,6 +28,7 @@ use think\Facade; * @method static mixed get(string $key, mixed $default = null) 读取缓存 * @method static bool set(string $key, mixed $value, int|\DateInterval|\DateTimeInterface $ttl = null) 写入缓存 * @method static bool delete(string $key) 删除缓存 + * @method static bool rm(string $name) static 删除缓存 * @method static iterable getMultiple(iterable $keys, mixed $default = null) 读取缓存 * @method static bool setMultiple(iterable $values, null|int|\DateInterval|\DateTimeInterface $ttl = null) 写入缓存 * @method static bool deleteMultiple(iterable $keys) 删除缓存