A Simple Hack to Boost Wordpress Load Time
July 21, 2007
Like most webmasters, I’m always trying to increase my blog’s loading speed. Currently, I am not satisfied as my load speed is not as fast it could be. Most of you should already have the WP-Cache plugin installed, and this should speed up things quite a bit. The next step would be to uninstall all the fluff plugins you don’t use.
Here’s a quick hack to your wp-config.php file that should get things going faster ![]()
Did you know Wordpress will try and cache all kinds of database queries as files on disk? It’s so simple. Just add the following to your wp-config.php:
// Enable the WordPress Object Cache:
define(ENABLE_CACHE, true);
This can give a noticeable and immediate performance benefit. Less queries = less overhead and more CPU to go do other things. Leave a comment on whether this worked for you.

Posted in
A Toronto Based Serial Entrepreneur and Internet Marketer


July 25th, 2007 at 1:01 pm
Hey, thanks for the tip. I think it boosted load times for me a second or so, always a welcome developement.
July 26th, 2007 at 9:23 pm
you’re very welcome sinclaire! Hope you’ve signed up to my RSS for more WP efficiency updates
September 14th, 2007 at 11:43 pm
Thanks this seems to help a lot.