mirror of
https://github.com/friendica/friendica
synced 2025-04-27 09:10:12 +00:00
Support for APCu caching
This commit is contained in:
parent
e9c230e109
commit
3ca8fa0e00
6 changed files with 217 additions and 2 deletions
|
@ -45,6 +45,11 @@ class CacheDriverFactory
|
|||
|
||||
return new Cache\RedisCacheDriver($redis_host, $redis_port, $redis_db, $redis_pw);
|
||||
break;
|
||||
|
||||
case 'apcu':
|
||||
return new Cache\APCuCache();
|
||||
break;
|
||||
|
||||
default:
|
||||
return new Cache\DatabaseCacheDriver();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue