You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

<?php
// +----------------------------------------------------------------------
// | 緩存設置
// +----------------------------------------------------------------------
return [
// 默認緩存驅動
'default' => env('cache.driver', 'file'),
// 緩存連接方式配置
'stores' => [
'file' => [
// 驅動方式
'type' => 'File',
// 緩存保存目錄
'path' => '',
// 緩存前綴
'prefix' => '',
// 緩存有效期 0表示永久緩存
'expire' => 0,
// 緩存標籤前綴
'tag_prefix' => 'tag:',
// 序列化機制 例如 ['serialize', 'unserialize']
'serialize' => [],
],
// 更多的緩存連接
// redis緩存
'redis' => [
// 驅動方式
'type' => 'redis',
// 服務器地址
'host' => '127.0.0.1',
// 緩存有效期 0表示永久緩存
'expire' => 300,
],
],
];