12345678910111213141516171819202122232425262728 |
- <?php
- return [
- 'type' => 'complex',
- 'default' => [
- 'type' => 'file',
- 'expire' => 10,
- 'prefix' => '',
- 'path' => '',
- ],
- 'redis' => [
- 'type' => 'redis',
- 'host' => '127.0.0.1',
- 'expire'=> 0,
- 'prefix'=> 'think',
- ],
- ];
|