firefly-iii/config/cache.php

100 lines
2.8 KiB
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
/**
* cache.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-05-20 01:57:45 -05:00
2015-02-05 21:39:52 -06:00
return [
2015-06-27 01:06:24 -05: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-09-15 23:19:40 -05:00
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
2015-06-27 01:06:24 -05:00
*/
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05:00
'default' => env('CACHE_DRIVER', 'file'),
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05: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.
|
*/
2015-02-05 21:39:52 -06:00
'stores' => [
2015-02-05 21:39:52 -06:00
'apc' => [
'driver' => 'apc',
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
'array' => [
'driver' => 'array',
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
'database' => [
'driver' => 'database',
'table' => 'cache',
2015-06-27 01:06:24 -05:00
'connection' => null,
],
2015-02-05 21:39:52 -06:00
'file' => [
2015-06-27 01:06:24 -05:00
'driver' => 'file',
'path' => storage_path('framework/cache'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05:00
'memcached' => [
'driver' => 'memcached',
2016-09-15 23:19:40 -05:00
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
2016-09-15 23:19:40 -05:00
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
2016-09-15 23:19:40 -05:00
],
'servers' => [
2015-06-27 01:06:24 -05:00
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
2016-09-15 23:19:40 -05:00
'weight' => 100,
2015-06-27 01:06:24 -05:00
],
],
],
2015-02-05 21:39:52 -06:00
'redis' => [
'driver' => 'redis',
2015-06-27 01:06:24 -05:00
'connection' => 'default',
],
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05: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.
|
*/
2015-02-05 21:39:52 -06:00
'prefix' => env('CACHE_PREFIX', 'firefly'),
2015-02-05 21:39:52 -06:00
];