mirror of
https://github.com/friendica/docker
synced 2025-01-08 15:31:45 +01:00
12 lines
197 B
PHP
12 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',
|
|
],
|
|
];
|