tp5配置引入使用redis

2022-07-12 01:24:13 字數 762 閱讀 2237

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.控制器裡寫上以下**測試一下

<?php

class

index

public

function

index()

}

tp5快取使用

引入 usethink cache 使用 options 快取型別為file type file 快取有效期為永久有效 expire 0,快取字首 prefix think 指定快取目錄 path runtime cache cache connect options if cache has th...

TP5偽靜態配置

為專案配置虛擬網域名稱 nginx 1 phpstudy 配置 站點網域名稱管理 正確配置指向應用專案 生成相應的配置檔案引數 本地配置host檔案 伺服器配置網域名稱 2 在nginx的conf裡面的vhosts.conf中找到剛剛生成的配置檔案引數在location 裡面配置 if e kate...

TP5 引入後台模板例子

tp5.0方法 找一套html後台管理模板,tp5引入 一 如何設定簡短後台 而不用官方很長的那種 後台 不是這種 前台 不是這種 建立成功後瀏覽 是什麼?tp5.1方法 1.定義js css檔案路徑,在html中引用 config template.php 檔案中寫 模板引擎型別 支援 php t...