mirror of
https://github.com/friendica/docker
synced 2024-11-11 10:41:34 +01:00
13 lines
197 B
PHP
13 lines
197 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* If nothing else set, use APCu as a caching driver (best performance for local caching)
|
||
|
*/
|
||
|
|
||
|
return [
|
||
|
'system' => [
|
||
|
'cache_driver' => 'apcu',
|
||
|
'session_handler' => 'cache',
|
||
|
],
|
||
|
];
|