2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
/**
|
|
|
|
* Caching configuration options.
|
|
|
|
*
|
|
|
|
* Changes to these config files are not supported by BookStack and may break upon updates.
|
|
|
|
* Configuration should be altered via the `.env` file or environment variables.
|
|
|
|
* Do not edit this file unless you're happy to maintain any changes yourself.
|
|
|
|
*/
|
|
|
|
|
2016-03-05 04:47:24 -05:00
|
|
|
// MEMCACHED - Split out configuration into an array
|
|
|
|
if (env('CACHE_DRIVER') === 'memcached') {
|
|
|
|
$memcachedServerKeys = ['host', 'port', 'weight'];
|
|
|
|
$memcachedServers = explode(',', trim(env('MEMCACHED_SERVERS', '127.0.0.1:11211:100'), ','));
|
|
|
|
foreach ($memcachedServers as $index => $memcachedServer) {
|
|
|
|
$memcachedServerDetails = explode(':', $memcachedServer);
|
2019-09-15 13:29:51 -04:00
|
|
|
if (count($memcachedServerDetails) < 2) {
|
|
|
|
$memcachedServerDetails[] = '11211';
|
|
|
|
}
|
|
|
|
if (count($memcachedServerDetails) < 3) {
|
|
|
|
$memcachedServerDetails[] = '100';
|
|
|
|
}
|
2016-03-05 04:47:24 -05:00
|
|
|
$memcachedServers[$index] = array_combine($memcachedServerKeys, $memcachedServerDetails);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
return [
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Default cache store to use
|
|
|
|
// Can be overridden at cache call-time
|
2015-07-12 15:01:42 -04:00
|
|
|
'default' => env('CACHE_DRIVER', 'file'),
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Available caches stores
|
2015-07-12 15:01:42 -04:00
|
|
|
'stores' => [
|
|
|
|
|
|
|
|
'apc' => [
|
|
|
|
'driver' => 'apc',
|
|
|
|
],
|
|
|
|
|
|
|
|
'array' => [
|
|
|
|
'driver' => 'array',
|
|
|
|
],
|
|
|
|
|
|
|
|
'database' => [
|
|
|
|
'driver' => 'database',
|
|
|
|
'table' => 'cache',
|
|
|
|
'connection' => null,
|
|
|
|
],
|
|
|
|
|
|
|
|
'file' => [
|
|
|
|
'driver' => 'file',
|
|
|
|
'path' => storage_path('framework/cache'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'memcached' => [
|
|
|
|
'driver' => 'memcached',
|
2016-03-05 04:47:24 -05:00
|
|
|
'servers' => env('CACHE_DRIVER') === 'memcached' ? $memcachedServers : [],
|
2015-07-12 15:01:42 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
'redis' => [
|
|
|
|
'driver' => 'redis',
|
|
|
|
'connection' => 'default',
|
|
|
|
],
|
|
|
|
|
|
|
|
],
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
// Cache key prefix
|
|
|
|
// Used to prevent collisions in shared cache systems.
|
2019-09-06 18:36:16 -04:00
|
|
|
'prefix' => env('CACHE_PREFIX', 'bookstack_cache'),
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
];
|