ThinkCache
ติดตั้ง ThinkCache
composer require -W webman/think-cache
หลังจากติดตั้งจะต้องรีสตาร์ท (การโหลดใหม่ไม่สามารถใช้งานได้)
webman/think-cache เป็นเสมือนการติดตั้งปลั๊กอิน
toptink/think-cache
โดยอัตโนมัติข้อควรระวัง
toptink/think-cache ไม่รองรับ PHP 8.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));
}
}