From: Seamus Lee Date: Wed, 10 Jul 2019 22:19:18 +0000 (+1000) Subject: Ensure recently converted groups cache matches previous behabiour my setting withArra... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5d27adeb234189d53ca14612d64d02d3da062e98;p=civicrm-core.git Ensure recently converted groups cache matches previous behabiour my setting withArray as fast for it Ensure custom data cache use the fastArray Cache --- diff --git a/Civi/Core/Container.php b/Civi/Core/Container.php index b205f59efe..c456d3d0d8 100644 --- a/Civi/Core/Container.php +++ b/Civi/Core/Container.php @@ -168,7 +168,7 @@ class Container { // For Caches that we don't really care about the ttl for and/or maybe accessed // fairly often we use the fastArrayDecorator which improves reads and writes, these // caches should also not have concurrency risk. - $fastArrayCaches = ['groups', 'navigation']; + $fastArrayCaches = ['groups', 'navigation', 'customData']; if (in_array($cacheSvc, $fastArrayCaches)) { $definitionParams['withArray'] = 'fast'; }