ThinkPHP 프레임워크는 Redis 드라이버를 캡슐화했습니다. ThinkPHP5.1 버전에서 Redis 캐시를 사용하는 방법을 알아봅시다.
Configuration:/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를 살펴보세요
Assignment
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!