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' => env('MEMCACHED_HOST', '127.0.0.1'),
55 'port' => env('MEMCACHED_PORT', 11211),
63 'connection' => 'default',
69 |--------------------------------------------------------------------------
71 |--------------------------------------------------------------------------
73 | When utilizing a RAM based store such as APC or Memcached, there might
74 | be other applications utilizing the same cache. So, we'll specify a
75 | value to get prefixed to all our keys so we can avoid collisions.
79 'prefix' => 'laravel',