91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
嵩明县| 云浮市| 大洼县| 三门县| 郓城县| 青海省| 年辖:市辖区| 岳普湖县| 宁远县| 温泉县| 彰武县| 库尔勒市| 长泰县| 岑溪市| 海安县| 莱芜市| 垫江县| 贵港市| 高陵县| 察哈| 南投市| 商城县| 彭山县| 察隅县| 临海市| 邯郸市| 易门县| 鲁山县| 汝州市| 古丈县| 崇明县| 卓资县| 双城市| 高阳县| 罗定市| 满城县| 新余市| 双桥区| 新宾| 方山县| 湖州市|