Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
81761b8
DAV now returns file name with Content-Disposition header
Jun 10, 2016
9e3cf79
Use capped cache for encryption's user access list
Jun 13, 2016
3e846a4
Use an explicit version of sabre/dav to allow caching on the jenkins …
DeepDiver1975 Jun 14, 2016
a0215b1
decrease initial users to load to 50
butonic Jun 7, 2016
ea330df
Allow empty host when installing on oracle via CLI (#25034)
butonic Jun 10, 2016
173f732
Merge pull request #25106 from owncloud/stable9-allow-empty-host-when…
Jun 15, 2016
57d3bb3
Merge pull request #25105 from owncloud/stable9-initial-userloading-w…
Jun 15, 2016
c5a60c3
Merge pull request #25084 from owncloud/stable9-enc-cappedcache-getac…
Jun 15, 2016
a9c98da
Capped cache for cache info in UserMountCache
Jun 15, 2016
3da5d06
Merge pull request #25052 from owncloud/stable9-webdav-download-mimetype
Jun 15, 2016
ffec0f1
Merge pull request #25118 from owncloud/stable9-fs-usermountcache-capped
Jun 16, 2016
2656f68
load authentication apps first
ChristophWurst Jun 15, 2016
416d4c5
fix grouped input fields, make sure they take precedence
jancborchardt Jun 16, 2016
b1e60cc
Merge pull request #25143 from owncloud/stable9-fix-grouped-inputs
Jun 16, 2016
5e17e99
Convert Dropbox Forbidden exception to StorageNotAvailableException
Jun 16, 2016
d55ad77
Merge pull request #25148 from owncloud/stable9-dropbox-catchratelimit
Jun 16, 2016
f429be1
Merge pull request #25137 from owncloud/stable9-backport-25126
Jun 16, 2016
3ac02c9
–emit correct signal when disabling an app
butonic Jun 16, 2016
82384ab
Merge pull request #25149 from owncloud/backport25146
Jun 16, 2016
2ce078e
ownCloud 9.0.3 RC1
Jun 16, 2016
b5d3e87
Remove shares of the root folder (#25138)
Jun 17, 2016
7aa825f
Revert "[stable9] Remove shares of the root folder" (#25157)
Jun 17, 2016
2d7bbf4
Do not recurse link share fetching
rullzer Mar 8, 2016
0e3682d
Capped cache for user config
butonic Jun 17, 2016
a3111e8
Merge pull request #25160 from owncloud/fix-oracle-endless-loop-stable9
Jun 17, 2016
0129437
Make getShareFolder use given view instead of static FS (#25150)
Jun 20, 2016
2f61c29
Delay files_sharing's registerMountProviders
Jun 17, 2016
3e3c17a
Merge pull request #25187 from owncloud/share-app-initorder-stable9
Jun 20, 2016
826654b
Merge pull request #25165 from owncloud/stable9-capped-user-cache
Jun 20, 2016
11c1d39
Fix null pointer exception in user_ldap
butonic Jun 10, 2016
fa9ba64
Catch exceptions while creating shared mounts
icewind1991 Jun 20, 2016
bf7a08f
dd support to know where the storage test comes from (#25166)
jvillafanez Jun 21, 2016
ddd4f36
Merge pull request #25199 from owncloud/shared-mount-catch-9
Jun 21, 2016
54209ab
Merge pull request #25197 from owncloud/fix-npe-in-user-ldap-stable9
Jun 21, 2016
880ff12
Rollback version must also adjust cached size
Jun 22, 2016
3aaa33d
Merge pull request #25228 from owncloud/stable9-enc-revertversionsize
Jun 22, 2016
b6192c3
On mount make sure multiple shares with same target map to unique one…
rullzer Apr 14, 2016
eb8e151
Merge pull request #25248 from owncloud/stable9-unique_targets
Jun 23, 2016
e366ed6
Don't reload page in case of auth errors during setup checks
Jun 23, 2016
907c901
Merge pull request #25256 from owncloud/stable9-setupchecks-preventre…
ChristophWurst Jun 24, 2016
dcb5f00
Merge remote-tracking branch 'upstream/stable9' into stable9-upstream…
LukasReschke Jun 26, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Capped cache for user config
  • Loading branch information
butonic committed Jun 17, 2016
commit 0e3682d810d9d5ddeb714ba337976cec5f7b2010
6 changes: 4 additions & 2 deletions lib/private/allconfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
*/

namespace OC;
use OC\Cache\CappedMemoryCache;
use OCP\IDBConnection;
use OCP\PreConditionNotMetException;

Expand Down Expand Up @@ -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;
}

Expand Down