How to make Wordpress site much faster and responsive
I have a serious problem of loading time from my wordpress site and even some time my server load goes to 53%.Then i’ll encountered by WP-Cache.WP-Cache is an extremely efficient WordPress page caching system to make you site much faster and responsive. It works by caching Worpress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and the building the page from the database. WP-Cache allows to serve hundred of times more pages per second, and to reduce the response time from several tenths of seconds to less than a millisecond.WP-Cache started from the ”’Staticize Reloaded”’ by matt and billzeller. Most of their recommendatiosn also apply to WP-Cache. Current version, WP-Cache2, is a huge improvement over previous versions of WP-Cache.
WP-Cache is composed of two parts:
- Two-phases Wordpress hooks. The first is called at the very begining –wp-cache-phase1.php– when just few code has been compiled. The second –wp-cache-phase2.php– after all plugins have been executed. The first phase checks if the requested URL is already cached, if so it serves from the static file and finishes. The second phase stores the generated page in a static file for further request.
- The WP-Cache plugin. This plugin configures and manages the whole process. It is easy to use and self-documented. It allows yoy to enable or disable cache, define expiration time for static pages, define rules for rejecting and accepting which URLs and php files can be cached, and shows and delete pages in cache.
- Upload to your plugins folder, usuallywp-content/plugins/
and unzip the file, it will create a
wp-content/plugins/wp-cache/directory.
- If you have Compression turned on under Miscellaneous options, turn it off.
- Activate the plugin on the plugin screen.
- Go to “Options” administration menu, select “WP-Cache” from the submenu, the plugin will try to autoconfigure everything. The plugin will try to autoconfigure everything, in case of failure –normally due to the lack of files’ permissions– it tell you and give the instructions to solve the problems.
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackbackfrom your own site.
Subscribe to our FREE Rss FeedWhat's Hot
Similar Interesting Posts
- How to check Broken Links of Wordpress Blogs
- How to hide a categories posts from wordpress RSS Feeds without using any plugin
- Top 26 reasons to go for wordpress 2.6
- Top 20 wordpress plugins that you can’t miss
- How to fix IE6 PNG Transparency issues in wordpress
- How to add featured content slider into wordpress blog
- How to add poll in your blog
- 101 List Of Awesome Wordpress Tips and Resources
- Affiliate Marketing through Wordpress Tool
- GetWIKI Plugin for Wordpress
- How to optimize website loading time and performance
- How to use multi tabbed menu in wordpress
- Slow Blog Solution
- How to display Tag Clouds without using any Wordpress Plugins
- How to show Random posts without using any Wordpress plugins
Tutorials On









August 26th, 2008 at 1:28 pm
Yes, with Wp-cache WordPress will fly, but you can do even more with PHP caching engine like APC. I found that PHP 5 engine spend about 40% of time to compile PHP page. APC will compile PHP page once and save it to cache (memory). After that, PHP page is not compiled again, but pulled from cache and proceeded normally from that point.