From 0ad692d3576610f31d0e585fb977c39684c39289 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 22 Nov 2004 06:49:58 +0000 Subject: [PATCH] Forgot to commit this: enable parser cache by default --- includes/DefaultSettings.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 70643b7f3e..3805fff617 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -395,7 +395,16 @@ $wgEnablePersistentLC = false; # Obsolete, do not use $wgCompressedPersistentLC = true; # use gzcompressed blobs $wgUseOldExistenceCheck = false; # use old prefill link method, for debugging only -$wgEnableParserCache = false; # requires that php was compiled --with-zlib +/** + * Keep parsed pages in a cache (objectcache table, turck, or memcached) + * to speed up output of the same page viewed by another user with the + * same options. + * + * This can provide a significant speedup for medium to large pages, + * so you probably want to keep it on. + */ +$wgEnableParserCache = true; + /**#@-*/ # wgHitcounterUpdateFreq sets how often page counters should be -- 2.20.1