kylin987 / webman-thinkorm-redis-cache
适用于webman下基于think-orm和redis开发的跨项目共享cache
v1.2.6
2024-10-17 03:28 UTC
Requires
- php: >=7.4
- ext-json: *
- psr/container: ^1.1.1
- symfony/cache: ^6.2
- webman/think-orm: ^1.1
README
此包仅适用于webman框架+thinkorm使用,同时提供适用于thinkphp6的包点这里
安装
composer require kylin987/webman-thinkorm-redis-cache
使用
1、引入:
参考test/model/User.php和Mini.php文件
2、配置:
1、修改config/thinkorm.php,添加以下3个配置
//数据库缓存store
'cache_store' => 'ormCache',
//缓存时间
'cache_exptime' => 172800,
//空数据是否仍然缓存
'cache_always' => true,
2、修改config/redis.php,增加一个缓存store,名字ormCache和上面的配置保持一致,下面的配置根据需求自行配置
// ormredis缓存
'ormCache' => [
'host' => '127.0.0.1',
'password' => '123456',
'port' => 6379,
'database' => 5,
],
3、添加启动项文件,把test文件夹下的boot文件夹复制到webman根目录下的support文件夹内
4、config/bootstrap.php中的数组增加一行\support\boot\ThinkOrm::class
2、使用:
//获取数据
$id = 10;
$user = User::getRedisCache($id);
//更新数据
//正常使用模型更新数据即可,也可以手动清理缓存触发后续的更新缓存
$id = 10;
$user = User::getRedisCache($id);
User::delCache($user);