Use a capped memory cache for the user/group cache

For #24403
When upgrading huge installations this can lead to memory problems as
the cache will only grow and grow.

Capping this memory will make sure we don't run out while during normal
operation still basically cache everything.
This commit is contained in:
Roeland Jago Douma 2016-05-27 10:32:19 +02:00 committed by Thomas Müller
parent 985063a7e2
commit dc4fd43f39
No known key found for this signature in database
GPG Key ID: A943788A3BBEC44C
1 changed files with 6 additions and 2 deletions

View File

@ -36,6 +36,7 @@
namespace OCA\User_LDAP;
use OC\Cache\CappedMemoryCache;
class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
protected $enabled = false;
@ -43,12 +44,12 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
/**
* @var string[] $cachedGroupMembers array of users with gid as key
*/
protected $cachedGroupMembers = array();
protected $cachedGroupMembers;
/**
* @var string[] $cachedGroupsByMember array of groups with uid as key
*/
protected $cachedGroupsByMember = array();
protected $cachedGroupsByMember;
public function __construct(Access $access) {
parent::__construct($access);
@ -57,6 +58,9 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface {
if(!empty($filter) && !empty($gassoc)) {
$this->enabled = true;
}
$this->cachedGroupMembers = new CappedMemoryCache();
$this->cachedGroupsByMember = new CappedMemoryCache();
}
/**