中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

tp5如何安裝配置使用redis

小新
533
2021-02-19 10:57:12
欄目: 云計算

tp5如何安裝配置使用redis

tp5安裝配置使用redis的方法:

1.php安裝redis擴展。

2.在tp里找到config.php配置文件,再找到cache,修改成如下配置。

'cache' => [

// 選擇模式

'type' => 'complex',

// 默認(文件緩存)

'default'=>[

// 驅動方式

'type' => 'File',

// 緩存保存目錄

'path' => CACHE_PATH,

// 緩存前綴

'prefix' => '',

// 緩存有效期 0表示永久緩存

'expire' => 0,

],

//redis緩存設置

'redis' => [

// 驅動方式

'type' => 'redis',

// 服務器地址

'host' => '127.0.0.1', //redis服務器ip

'password' => '',

'port' => '6379',

'password'=> "",

'timeout' => 3600

],

],

3.最后在控制器中使用以下代碼測試。

namespace app\index\controller;

class Index

{

public $redis;

public function __construct(){

$this->redis = new \Redis();

$this->redis->connect('127.0.0.1',6379);

}

public function index()

{

$redis = $this->redis;

echo $redis->ping();

}

}

0
防城港市| 章丘市| 古浪县| 万载县| 车致| 石楼县| 自治县| 南溪县| 开阳县| 西昌市| 普兰店市| 隆林| 德兴市| 定边县| 山东省| 曲水县| 吉安市| 万盛区| 西贡区| 芜湖市| 驻马店市| 奈曼旗| 铁力市| 衡山县| 隆德县| 高雄县| 临城县| 玉田县| 隆昌县| 张家口市| 辽中县| 隆林| 且末县| 蒙山县| 罗山县| 罗定市| 武强县| 海丰县| 内丘县| 泗水县| 道孚县|