安裝redis
配置Redis訪問密碼
Linux下的 /usr/local/redis-3.0.7/redis.conf
編輯配置檔案vim redis.conf
輸入/requirepass
進行搜尋關鍵字;按鍵n跳至下一個匹配
找到# requirepass foobared
,把#去掉, foobared改成自己的密碼即可
:wq
儲存修改,退出
在/usr/local/redis-3.0.7/src
路徑下重啟redis:redis-server ../redis.conf
Tp5配置redis
配置config.php檔案
//redis配置
'cache' => [
// 驅動方式
'type' => 'redis',
// 伺服器地址
'host' => '這裡填伺服器ip',
// 埠號
'port' => 6379,
// redis配置的密碼,如果沒有則留空
'password' => '這裡填密碼',
// 快取儲存目錄
'path' => CACHE_PATH,
// 快取字首
'prefix' => '',
// 快取有效期 0表示永久快取
'expire' => 0,
],
測試
<?php
namespace app\index\controller;
use think\Cache;
class Index
{
public function test()
{
Cache::set('name:a','bilibili');
halt(Cache::get('name:a')); // bilibili
}
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結