ThinkPHP6中如何使用Redis?以下這篇文章就來介紹ThinkPHP6使用Redis的方法,希望對大家有幫助!
我的運作環境:CentOS 8.2 寶塔
如果環境不同請依照自己環境安裝Redis和php擴充
#先在寶塔【軟體商店】安裝Redis,然後在對應的php版本管理安裝Redis擴充
1、在TP6專案設定Redis參數設定
## config/cache.php<?php use think\facade\Env; // +---------------------------------------------------------------------- // | 缓存设置 // +---------------------------------------------------------------------- return [ // 默认缓存驱动 'default' => Env::get('cache.driver', 'file'), // 缓存连接方式配置 'stores' => [ 'file' => [ // 驱动方式 'type' => 'File', // 缓存保存目录 'path' => '', // 缓存前缀 'prefix' => '', // 缓存有效期 0表示永久缓存 'expire' => 0, // 缓存标签前缀 'tag_prefix' => 'tag:', // 序列化机制 例如 ['serialize', 'unserialize'] 'serialize' => [], ], //新增redis 'redis' => [ // 驱动方式 'type' => 'redis', // 服务器地址 'host' => '127.0.0.1', 'password' => '',//如果没有设置密码为空 ], // 更多的缓存连接 ], ];
2、使用Redis
<?php namespace app\api\controller; use think\cache\driver\Redis; use think\facade\Config; class Test { public function test() { $redis = new Redis(Config::get('cache.stores.redis')); $redis->set('pasawu', 'test'); $pasa = $redis->get('pasawu'); dd($pasa); } }
thinkphp框架】#
以上是聊聊ThinkPHP6中如何使用Redis的詳細內容。更多資訊請關注PHP中文網其他相關文章!