From 4360f0e21af706833581e244226515a9184cfab1 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Mon, 18 May 2015 21:49:34 -0700 Subject: [PATCH] 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 --- includes/registration/ExtensionRegistry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.20.1