https://bugzilla.wikimedia.org/show_bug.cgi?id=24687
Krinkle <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #7 from Krinkle <[email protected]> 2012-10-26 05:03:35 UTC --- (In reply to comment #6) > I did a profile on my wiki to see why it's so slow and the AutoLoader.php is > being hit 50+ times and that's excluding extensions Define 'being hit'? The number of require_once's for it should be very slim. But even then, a require_once will, as the name says, only "hit" it once. Though 530ms is a lot, it most certainly helps to configure cache. Running any serious/production wiki without cache is irresponsible. At the very least activate internal caches such as for i18n, expensive operations (dbcache or memcached). If you want to avoid hits to (most of) the backend entirely you could go for file cache or even go large-scale and set up squid/varnish in front of it. Read more at https://www.mediawiki.org/wiki/Manual:Cache. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
