如何配置启用和关闭ThinkPHP6的缓存
时间: 2024-05-06 14:15:41 浏览: 273
Thinkphp关闭缓存的方法
ThinkPHP6 默认使用文件缓存,可以在 `config/cache.php` 文件中进行配置。
要启用缓存,需要设置 `type` 为 `file`,并设置 `path` 缓存路径:
```php
return [
'default' => 'file',
'stores' => [
'file' => [
'type' => 'file',
'path' => app()->getRuntimePath() . 'cache',
],
],
];
```
要关闭缓存,可以将 `default` 设置为 `null`:
```php
return [
'default' => null,
];
```
除了文件缓存,ThinkPHP6 还支持其他类型的缓存,如 Redis 缓存和 Memcached 缓存。可以根据实际需要进行配置。
阅读全文