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, usually
wp-content/plugins/and unzip the file, it will create awp-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.
Youtube Downloader
Find Domain age,Pagerank,Valid Pagerank, Directory Listing,Indexed Pages in Search Engines,Web Archive, Alexa Traffic and Graph
Free RapidShare and MegaUpload Search Engine
Watch Live Tv
Free Tools
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Subscribe to our FREE Rss Feed- Top 26 reasons to go for wordpress 2.6
- Top 20 wordpress plugins that you can’t miss
- How to add poll in your blog
- Affiliate Marketing through Wordpress Tool
- GetWIKI Plugin for Wordpress
- How to use multi tabbed menu in wordpress
- Slow Blog Solution
- Actual Drawing
- Polyglotman - Convert man pages to hyperlinked documents
- Free tool for full length screenshots of websites and webpages
- HTML Code Spy 1.50
- [linkcounter] Count all links in any webpage
- Top 10 way to speed up your website
- Top 25 twitter tools for Wordpress
- Reload your iphone for wordpress [download application]





December 5th, 2007 at 1:41 pm
[...] How to make Wordpress site much faster and responsive [...]
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.