We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cdc606 commit 8af3d20Copy full SHA for 8af3d20
GlobalCache.php
@@ -109,14 +109,14 @@
109
'xedwiki',
110
];
111
// $disableWarmup = in_array( $wgDBname, $disableWarmupArray );
112
-$disableWarmup = true;
+$enableWarmup = ( $beta || preg_match( '/^([0-9]|a)/', $wgDBname ) );
113
$wgParsoidCacheConfig = [
114
// Defaults to MainStash
115
'StashType' => null,
116
// 24h in production, VE will fail to save after this time.
117
'StashDuration' => 24 * 60 * 60,
118
'CacheThresholdTime' => 0.0,
119
- 'WarmParsoidParserCache' => $disableWarmup ? false : true,
+ 'WarmParsoidParserCache' => $enableWarmup ? true : false,
120
121
122
$wgLanguageConverterCacheType = CACHE_ACCEL;
0 commit comments