Performance
Table of contents
By default, Tiki is configured with default performance settings which should suit most contexts. For example, Tiki uses the Smarty template engine and it has built-in cache. If you find Tiki slow, this page is here to help.
Basic tips
- Don't be cheap on hardware or hosting. Get the good stuff.
- Use recent versions of PHP/MySQL/Apache etc. as each new version is typically faster than the previous
- PHP 5.3 is 1.2 times faster than PHP 5.2 for raw execution speed
- Use the latest stable Tiki version or LTS version (but you should be doing this anyway even without performance concerns)
- Use APC or XCache (see below)
- Turn off any feature you are not using
- Use the Performance Admin Panel at tiki-admin.php?page=performance where you can configure the various performance-related settings, including Content Delivery Network. Otherwise, most performance tuning is done by tweaking the server (outside the scope of Tiki)
- Increase the "memory_limit" of your PHP instance (128M is the default)
- Think also about configuring your web server (for example, setting a long expiry date for images, css and js files)
- Tiki5 has many enhancements related to YSlow tests
- Activate htaccess
- http://blog.lphuberdeau.com/wordpress/2010/03/24/improving-rendering-speed/
- Use a free tool like gtmetrix.com to measure the impact of your optimisations on the loading speed of your site.
- If you run into trouble, check Troubleshooting.
Minify JavaScript
Apache (httpd.conf)
PHP Settings (php.ini)
Accelerating PHP
Alternative PHP Cache (APC)
XCache
eAccelerator
Memcached
Database performance
This is a troubleshooting guide for database performance.
MySQL
MySQL has a slow queries feature which is accessible via a log or at the command line. Please read the MySQL manual page to enable this feature.
Using the information in MySQL's chapter on optimization, look for places where indexes may improve the database access speed. Add an index, then re-test. If you think you've found an improved indexing scheme, please open a tracker item on dev.tikiwiki.org.
In tiki-admin.php?page=general, you can activate Log SQL and set Log queries using more than (seconds):
MySQL replication
Related pages
PHPIDS (PHP-Intrusion Detection System)
- PHPIDS (New to Tiki10)
- When your site is attacked by bots and spammers, it has an impact on performance. PHPIDS helps to detect and block intrusion attempts.
Related links
- http://www.webpagetest.org/
- http://www.showslow.com/
- http://gtmetrix.com/
- https://www.ohloh.net/tags/stress-testing
- mod_perl Performance Tuning (This is a page about mod_perl tuning, just ignore the perl stuff and look at the apache tweaks in there.)
- Häuptling Schnelles Wiesel: Wirksames Tuning für viel besuchte Webauftritte Additional apache tuning for sites with much traffic (in German)
