Caching

Memcache is used for increasing the speed of dynamic web applications by loading the web page faster. Memcache is used to reduce the number of hits to the database by loading the page from the memory. Memcache works for all types of users (both anonymous and admin) since it caches data like sessions, forms, blocks etc in RAM.

Continue reading
  • By minu.podipara on July 18, 2012 - 23:50
  • Boost
0

Boost is a Drupal module that accelerates the performance of a site by efficient caching of pages. It can be enabled for all pages other than the ones which need to show constantly updating data (for example, a captcha box).
NOTE: If you are looking on how to install and configure Boost for your Drupal website, go here: How to install and configure Boost caching module to speed up performance on your Drupal 6 site.

Here we list some methods for testing the Boost implementation on a Drupal website:

Continue reading
  • By anoopjohn on July 4, 2012 - 22:16
  • Boost
0

Boost is a module that allows for static caching on a Drupal site for improving performance for anonymous users. You can read more about how to install and configure boost here. Boost comes with a boost crawler that can crawl your site and refresh the boost cache. Here is a simple script that can be used to refresh the boost cache without enabling the boost crawler.

Continue reading

Boost is a module in Drupal that enables file based static page caching in Drupal. When an anonymous user visits a page for the first time in a Boost-enabled Drupal site, the page will get stored as a static html file in a cache folder. When the next anonymous user visits the same page the htaccess rules created by Boost will serve the static file cached in the cache folder instead of bootstrapping drupal for generating the page. This saves a lot of processor usage and would help even entry level hosting servers serve reasonably good volume of traffic. Here is how you can install and configure Boost in a Drupal 6 site.

Continue reading