使用缓存
父控制器继承 \ePHP\Core\Controller
后,可以使用 $this->cache
获取Cache实例
Cache实例的方法
$this->cache->get(string $key)
$this->cache->set(string $key, mixed $value, int $expires)
$this->cache->delete(string $key)
$this->cache->flush()
可在主配置文件中设置 cache_driver
Last updated