fix:修复BUG/升级1.1.6版本

This commit is contained in:
Ying
2023-04-25 20:11:49 +08:00
parent 445e5f9662
commit 6a6866bbaf
2357 changed files with 456920 additions and 140567 deletions

View File

@@ -2,6 +2,16 @@
用于PHP缓存管理PHP 7.1+),支持`PSR-6``PSR-16`缓存规范。
主要特性包括:
* 支持多缓存通道设置及切换
* 支持缓存数据递增/递减
* 支持门面调用
* 内置File/Redis/Memcache/Memcached/Wincache
* 支持缓存标签
* 支持闭包数据
* 支持`PSR-6``PSR-16`缓存规范
## 安装
~~~
composer require topthink/think-cache
@@ -73,3 +83,5 @@ $redis = Cache::store('redis');
$redis->set('var','value',600);
$redis->get('var');
~~~
更多内容可以参考 https://www.kancloud.cn/manual/thinkphp6_0/1037634