mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 12:34:39 +02: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',
|
|
],
|
|
];
|