6 |--------------------------------------------------------------------------
8 |--------------------------------------------------------------------------
10 | This option controls the default cache connection that gets used while
11 | using this caching library. This connection is used when another is
12 | not explicitly specified when executing a given caching function.
16 'default' => env('CACHE_DRIVER', 'file'),
19 |--------------------------------------------------------------------------
21 |--------------------------------------------------------------------------
23 | Here you may define all of the cache "stores" for your application as
24 | well as their drivers. You may even define multiple stores for the
25 | same cache driver to group types of items stored in your caches.
40 'driver' => 'database',
47 'path' => storage_path('framework/cache'),
51 'driver' => 'memcached',
54 'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100,
61 'connection' => 'default',
67 |--------------------------------------------------------------------------
69 |--------------------------------------------------------------------------
71 | When utilizing a RAM based store such as APC or Memcached, there might
72 | be other applications utilizing the same cache. So, we'll specify a
73 | value to get prefixed to all our keys so we can avoid collisions.
77 'prefix' => 'laravel',