ThinkPHP框架已經封裝好redis驅動,不管是session還是cache都支援redis驅動,下面我們來了解一下在ThinkPHP5.1版本下如何使用redis快取。
設定:/config/cache.php
return [ // 驱动方式 'type' => 'File', // 缓存保存目录 'path' => '', // 缓存前缀 'prefix' => '', // 缓存有效期 0表示永久缓存 'expire' => 0, 'default' => [ 'type' => 'file', // 全局缓存有效期(0为永久有效) 'expire'=> 0, // 缓存前缀 'prefix'=> 'think', // 缓存目录 'path' => '../runtime/cache/', ], 'redis' => [ 'type' => 'redis', 'host' => '127.0.0.1', // 全局缓存有效期(0为永久有效) 'expire'=> 0, // 缓存前缀 'prefix'=> 'think', ], // 添加更多的缓存类型设置 ];
主要是看redis這塊
賦值##
public function redis(){ Cache::store('redis')->set('name','value'); }
列印
public function redisShow(){ $name = Cache::store('redis')->get('name'); print_r($name); }推薦教學:
以上是ThinkPHP5.1使用redis緩存的詳細內容。更多資訊請關注PHP中文網其他相關文章!