123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- return [
-
- 'driver' => 'file',
-
- 'path' => storage_path().'/framework/cache',
-
- 'connection' => null,
-
- 'table' => 'cache',
-
- 'memcached' => [
- ['host' => '127.0.0.1', 'port' => 11211, 'weight' => 100],
- ],
-
- 'prefix' => 'laravel',
- ];
|