ThinkCache
ThinkCache 설치
composer require -W webman/think-cache
설치 후 restart로 다시 실행해야 합니다(reload는 작동하지 않음)
webman/think-cache은 사실상
toptink/think-cache
를 자동으로 설치하는 플러그인입니다.주의
toptink/think-cache는 php8.1을 지원하지 않습니다.
구성 파일
구성 파일은 config/thinkcache.php
에 있습니다.
사용
<?php
namespace app\controller;
use support\Request;
use think\facade\Cache;
class UserController
{
public function db(Request $request)
{
$key = 'test_key';
Cache::set($key, rand());
return response(Cache::get($key));
}
}