Cachet/config/cache.php

101 lines
2.8 KiB
PHP
Raw Normal View History

2015-03-20 18:30:45 -06:00
<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2015-03-20 18:30:45 -06:00
return [
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
2016-10-19 12:28:39 +01:00
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
2015-03-20 18:32:24 -06:00
*/
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'default' => env('CACHE_DRIVER', 'file'),
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
*/
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'stores' => [
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'apc' => [
'driver' => 'apc',
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'array' => [
'driver' => 'array',
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'file' => [
'driver' => 'file',
2017-06-13 23:09:18 +01:00
'path' => storage_path('framework/cache/data'),
2015-03-20 18:32:24 -06:00
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'memcached' => [
2016-10-19 12:28:39 +01:00
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
2015-03-20 18:32:24 -06:00
'servers' => [
[
2016-10-19 12:28:39 +01:00
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
2016-03-24 15:21:02 +00:00
'weight' => 100,
2015-03-20 18:32:24 -06:00
],
],
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
],
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing a RAM based store such as APC or Memcached, there might
| be other applications utilizing the same cache. So, we'll specify a
| value to get prefixed to all our keys so we can avoid collisions.
|
*/
2017-06-13 23:09:18 +01:00
2015-03-20 18:32:24 -06:00
'prefix' => 'laravel',
2017-06-13 23:09:18 +01:00
2015-03-20 18:30:45 -06:00
];