From: Kunal Mehta Date: Tue, 19 May 2015 04:49:34 +0000 (-0700) Subject: registration: Have cache entries expire after 24 hours X-Git-Tag: 1.31.0-rc.0~11359^2 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=4360f0e21af706833581e244226515a9184cfab1;p=lhc%2Fweb%2Fwiklou.git registration: Have cache entries expire after 24 hours Since our cache invalidation strategy is to just change the key, don't have old entries stick around forever. Change-Id: Ib62b69adfc2855a2ecd08558d4054d9b5d3ed571 --- diff --git a/includes/registration/ExtensionRegistry.php b/includes/registration/ExtensionRegistry.php index d938f07272..75d0bb7ca5 100644 --- a/includes/registration/ExtensionRegistry.php +++ b/includes/registration/ExtensionRegistry.php @@ -104,7 +104,7 @@ class ExtensionRegistry { // did that, but it should be cached $data['globals']['wgAutoloadClasses'] += $data['autoload']; unset( $data['autoload'] ); - $this->cache->set( $key, $data ); + $this->cache->set( $key, $data, 60 * 60 * 24 ); } $this->queued = array(); }