mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
11 lines
165 B
PHP
11 lines
165 B
PHP
<?php
|
|
|
|
/**
|
|
* If nothing else set, use APCu as a caching driver (best performance for local caching)
|
|
*/
|
|
|
|
return [
|
|
'system' => [
|
|
'cache_driver' => 'apcu',
|
|
],
|
|
];
|