diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-06-17 12:58:55 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-06-17 12:58:55 +0200 |
commit | 66560b8ed92a543b9b2f45807624d9c473f2145c (patch) | |
tree | f838aeb0695269a72b3981004ed8b39b8014dbea /lib | |
parent | cc532bb14aed74c397efa29a19ba48a3eeeb0cf0 (diff) | |
download | nextcloud-server-66560b8ed92a543b9b2f45807624d9c473f2145c.tar.gz nextcloud-server-66560b8ed92a543b9b2f45807624d9c473f2145c.zip |
Capped cache for user config
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AllConfig.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/AllConfig.php b/lib/private/AllConfig.php index e082cea3305..c8b2009fcc7 100644 --- a/lib/private/AllConfig.php +++ b/lib/private/AllConfig.php @@ -27,6 +27,7 @@ */ namespace OC; +use OC\Cache\CappedMemoryCache; use OCP\IDBConnection; use OCP\PreConditionNotMetException; @@ -58,14 +59,15 @@ class AllConfig implements \OCP\IConfig { * - deleteAllUserValues * - deleteAppFromAllUsers * - * @var array $userCache + * @var CappedMemoryCache $userCache */ - private $userCache = array(); + private $userCache; /** * @param SystemConfig $systemConfig */ function __construct(SystemConfig $systemConfig) { + $this->userCache = new CappedMemoryCache(); $this->systemConfig = $systemConfig; } |