firefly-iii/config/cache.php

114 lines
3.4 KiB
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
2017-10-21 01:40:00 -05:00
/**
* cache.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:44:46 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-10-21 01:40:00 -05:00
*/
2017-09-14 10:40:02 -05:00
declare(strict_types=1);
2017-08-12 03:27: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
2018-04-26 23:26:37 -05:00
'default' => envNonEmpty('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' => [
2017-11-15 04:33:07 -06:00
'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',
2017-11-15 04:33:07 -06:00
'path' => storage_path('framework/cache/data'),
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' => [
2017-11-15 04:33:07 -06:00
'driver' => 'memcached',
2016-09-15 23:19:40 -05:00
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
2017-11-15 04:33:07 -06:00
'sasl' => [
2016-09-15 23:19:40 -05:00
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
2017-11-15 04:33:07 -06:00
'options' => [
2017-09-09 15:32:11 -05:00
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
2016-09-15 23:19:40 -05:00
],
2017-11-15 04:33:07 -06:00
'servers' => [
2015-06-27 01:06:24 -05:00
[
2017-11-15 04:33:07 -06: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' => [
2017-11-15 04:33:07 -06:00
'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
];