Manual:Performance tuning

From MediaWiki.org
(Redirected from Manual:As your site grows)
Jump to: navigation, search

This page provides a quick overview of ways to improve the performance of MediaWiki.

Contents

[edit] Opcode caching

See Manual:Cache#PHP_caching and PHP_configuration#Opcode_caching

Opcode caches store the compiled output of PHP scripts, greatly reducing the amount of time needed to run a script multiple times. Supported opcode caches are APC, eAccelerator, mmTurck, WinCache and XCache; see $wgMainCacheType.

[edit] memcached

See Memcached

The user interface text and other expensive objects can be cached by the opcode user cache or memcached, as will logins and partially completed pages.

If you have enough available RAM, you should use memcached, which will require at least 80MB or more of RAM, about 60MB for code plus whatever you need for cache. If you balance your load across multiple webservers, you should use a dedicated memcached (cluster).

[edit] Output caching

See Manual:File cache for instructions on enabling and configuring rendered page caching

MediaWiki pages can be computationally expensive to render. MediaWiki has an optional file caching system that stores the output of rendered pages. For larger sites, using an external cache like Squid or Varnish is preferable to using the file cache.

[edit] HTTP caching proxies and HTTP acceleration

See Manual:Squid caching and Manual:Varnish caching

Simply put, HTTP accelerators/caching proxies (such as Squid and Varnish) store copies of pages sent out by the web server. When a cached page is requested, the accelerator serves up the copy instead of passing the response on to the web server. This can tremendously reduce the load on the web server. When a page is updated, the copy is removed from the accelerator's cache.

See also this article for instructions on using Apache's mod_disk_cache with MediaWiki.

[edit] Configuration settings

Large sites running MediaWiki 1.6 or later should set $wgJobRunRate to a low number, say 0.01. See Manual:Job queue for more information.

[edit] mbstring

Although MediaWiki can work without the mbstring PHP library, it is highly recommended for performance reasons (note: mbstring.func-overload configuration option must be off).

[edit] Database configuration and setup

[edit] MySQL

For a heavy concurrent write load, InnoDB is essential. Set $wgAntiLockFlags = ALF_NO_LINK_LOCK | ALF_NO_BLOCK_LOCK; to reduce lock contention, at the expense of introducing occasional inconsistencies. Use memcached, not the default MySQL-based object cache.

[edit] Multiple servers

The database software and web server software will start to fight over RAM on busy MediaWiki installations that are hosted on a single server. A logical step, once other performance optimizations have been made, is to put the database and web server on separate servers (or, in some cases, multiple separate servers.)

[edit] HipHop

HipHop is an awesome tool provided by Facebook that takes PHP and does freaky magic to turn it into compilable C++. The resulting binaries are way faster than Zend PHP could ever hope to be. HipHop support isn't complete in MediaWiki, and should not be attempted by the faint hearted.

[edit] See Also

Language: English
Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Print/export
Toolbox