You are here

README.txt in Boost 6

Same filename and directory in other branches
  1. 5 README.txt
  2. 7 README.txt
 BOOST MODULE FOR DRUPAL 6.x
 ---------------------------

 CONTENTS OF THIS README
 -----------------------
   * Description
   * Features
   * Requirements
   * Recommended Modules
   * Installation
   * System Check & Verify Functions
   * Boost Administrative and Stats Blocks
   * Configuration Tips
   * Important Notes & Troubleshooting
   * File System Cache
   * How Boost Works
   * Dispatch Mechanism
   * Limitations
   * Boost Handbook Links
   * Boost Project & Drupal Links
   * Credits


 DESCRIPTION
 -----------
 This module provides static page caching for Drupal 6.x websites.
 It provides a significant performance increase as well as
 scalability for sites that receive mostly anonymous traffic.
 Web pages load very fast from the cache instead of waiting on
 PHP and Drupal to serve them from the database. If the page is
 not found in the cache, then the request is passed to Drupal.
 The built-in crawler makes sure expired content is quickly
 regenerated to insure fast page loading at all times.
    The guy that is writing this could brag about Boost,
 but he will let you do that part. Enjoy!


 FEATURES
 --------
 *** This is a partial list, because it could take the whole page.
 * Fast page serving for anonymous visitors to your Drupal website.
 * Reduces web server load and increases your site's scalability.
 * On-demand page caching (static file created after first page request).
 * Uses cron run to trigger cleaning of cached files.
 * Built in crawler to automatically regenerate cached files.
 * Adjustable cache lifetimes for different parts of the website.
 * Supports HTML, XML, CSS, JavaScript, JSON/AJAX.
 * Injects HTML comment to provide easy verification of Boost.
 * Supports shared, VPS and dedicated hosting.
 * Supports sub-directory Installations.
 * Full support for multi-site Drupal installations.


 REQUIREMENTS
 ------------
 Boost is designed for Drupal 6.x served by Apache on any platform.

 Drupal's clean URLs MUST be enabled and working properly.

 If the cached files and pages must be cleared at their expired time,
 the cron run for Drupal must be correctly setup to execute more often than,
 or as often as the cache lifetime you specify in the settings.

 Since the static page caching is implemented with mod_rewrite directives,
 Apache version 1.3 or 2.x with mod_rewrite enabled is required (if Drupal's
 clean URLs work for you, you're fine; if not, get them working first).

 Other web servers, such as Lighttpd, are NOT officially supported at present.
 Lighttpd: http://drupal.org/node/150909
 Nginx: http://drupal.org/node/244072


 RECOMMENDED MODULES
 -------------------
    Path (Drupal Core)

    Global Redirect	http://drupal.org/project/globalredirect

    Transliteration	http://drupal.org/project/transliteration

    Pathauto		http://drupal.org/project/pathauto

    Token		http://drupal.org/project/token

  Optional if cron configuration is not available on your server.
    Poormanscron 1.1 or 2.0	http://drupal.org/project/poormanscron

  If enabled [x] Clear all cached pages referenced via CCK with a node...
    The node referrer module is recommended.
    Node Referrer	http://drupal.org/project/nodereferrer


 INSTALLATION
 ------------
  1. Goto: [Administer > Site configuration > Clean URLs] and ensure that
     Drupal's clean URLs are enabled and working correctly on your site.

  2. Unzip and upload the module folder (as is) to the sites/all/modules
     folder in your Drupal installation directory.

  3. Goto: [Administer > Site building > Modules] and enable the Boost
     module. You will find it in the section labeled "Caching".

  4. Goto: [Administer > Site configuration > Performance > Boost settings]
     Specify the cache directory, which should be something like
     cache/normal/www.example.com (keeping the default directory is recommended)
     and must be writeable by the web server: you may need to create the
     directory, and set the permissions so it is writeable.

     On the [Administer > Site configuration > Performance > Boost settings]
     page is the Default maximum cache lifetime setting. As cached pages are
     created, they are given an expire by date and time, which is the current
     date and time plus the maximum cache lifetime. These dates and times are
     checked on each cron run; and if a page is expired, the cache is cleared,
     and a new cached version will be created the next time the page is
     called upon by an anonymous user (including bots). The page will be
     regenerated by the Boost crawler if enabled on the Boost settings page.

  5. IMPORTANT:
     --- This step is easy and required for Boost to work! ---
     Back up the original .htaccess file from your Drupal installation directory
     for safe keeping. Copy the custom generated htaccess rule from
     [Administer > Site configuration > Performance > htaccess rules generation]
     page and paste the rules into the Drupal htaccess file as shown below.

       # RewriteBase /
     -------paste the rules right here--------
       # Rewrite URLs of the form 'x' to the form 'index.php?q=x'.

     In the boost/htaccess/ folder, the default.txt file shows you
     the exact placement of the rules, in case your not sure.

     The module package has 3 htaccess templates included in the Boost/htaccess
     folder (boosted1.txt, boosted2.txt and default.txt). These templates may
     be helpful in some cases and are good for reference. For the technically
     inclined, the difference between the two .htaccess templates is due
     to boosted1.txt relying on SERVER_NAME versus boosted2.txt using HTTP_HOST.
     There are valid use cases for both in more advanced multi-site installations.

     Note: If you get "400 Bad Request" responses from Apache server, make sure
     you have configured RewriteBase as documented in
     http://drupalcode.org/viewvc/drupal/drupal/.htaccess?view=markup&pathrev=DRUPAL-6
     For example when using VirtualHost configurations it is necessary to define as:
     RewriteBase / 

  6. Goto: [Administer > Site configuration > Performance]
     Check and set the Drupal cache settings as desired.

  7. Prepare robots.txt file for search engines.
     Add "Disallow: /boost_stats.php" to the robots.txt file as shown below.

     # Files
     Disallow: /boost_stats.php
     Disallow: /CHANGELOG.txt
     .....
     .....


 SYSTEM CHECK AND VERIFY FUNCTIONS
 ---------------------------------
  1. Log out from Drupal (or use another browser) to browse around your site
     as the anonymous user. Ensure that static files are indeed being
     generated into the Boost cache directory you specified above (#4); and if
     you opt to use gzip, likewise check gzipped files are being generated in
     the directory you specified for this.
     The Administer > Performance > Boost settings page shows how many pages
     are cached by Boost.

  2. Check the Drupal status page [Administer > Reports > Status report]
     for any errors or notices.

  3. To check whether you have a cached or dynamic version of a page,
     look at the very end of the page's HTML source. You have the cached
     version if the last line looks like this:
 <!--Page cached by Boost @ 2009-08-11 06:19:58,expires @ 2009-08-11 09:19:58-->


 BOOST ADMINISTRATIVE AND STATS BLOCKS
 -------------------------------------
 There are 2 blocks that you can add to help with the administrative
 side (status, page configuration), and 1 block to support core stats.

 Goto: (administer > Site building > Blocks > List) to place them.

 The visibility of blocks can also be configured by role and page.
 On the Blocks list page, to the right of each block click 'configure'.


 * Status Block
   This block shows the current status of the page as far as Boost is
   concerned. It will state if the page is served 'live' or by 'Boost',
   the expiration of the page and has a Flush Page button to clear the
   page from the cache manually. The block only appears if your not user
   0 and provides useful information about PHP errors on the page.

 * Page configuration Block
   This block allows the administrator to set pages individually.
   Including setting for maximum cache lifetime(select box), preemptive
   cache(on or off), scope(page ID, content type or content container).

 * Stats Block
   Drupal's core stats is supported. Configure the "Popular content" block, but
   then disable it. Place the "Boost: AJAX core statistics" in its place. If ajax
   stats are loading too slowly, copy stats/boost_stats.php to your webroot and
   enable "Cache Statistics Block". The cache gets updated on cron runs.


 CONFIGURATION TIPS
 ------------------
 For the (i18n) and the (Domain) modules:
   Enable
    [x] Do not store the cache file path in the database
    [x] Flush all sites caches in this database (singe db, multi-site)
   Disable
    [ ] Only allow ASCII characters in path

 Enable XML & AJAX/JSON caches
   Enable
    [x] Cache .xml & /feed
    [x] Cache ajax/json

 To Use the Cron Crawler
   Enable
    [x] Overwrite the cached file if it already exits
    [x] Expire content in DB, do not flush file.
    [x] Enable the cron crawler


 IMPORTANT NOTES AND TROUBLESHOOTING
 -----------------------------------
 * If cron is not clearing the cache as expected.
   Set $base_url variable in /sites/default/settings.php (line 125 or so)
   so cron runs error free and clears the cache properly when invoked like
   'php /path/to/cron.php' or 'drush cron'. This should be something like
   http://www.example.com

   Guide for editing settings.php
   http://drupal.org/node/367081#comment-1504894

 * If your Drupal URL paths contain non-ASCII characters, you may have to
   tweak your locate settings on the server in order to ensure the URL paths
   get correctly translated into directory paths in the file system.
   You can also turn off the ASCII filter in the Boost Advanced Settings.
   OR install the Transliteration module to help fix the characters.


 FILE SYSTEM CACHE
 -----------------
 The cached files are stored (by default) in the cache/normal/ directory
 under your Drupal installation directory. The Drupal pages' URL paths
 are translated into file system names in the following manner:

   http://example.com/
   => cache/normal/example.com/_.html

   http://example.com/about
   => cache/normal/example.com/about_.html

   http://example.com/about/staff
   => cache/normal/example.com/about/staff_.html

   http://example.com/node/42
   => cache/normal/example.com/node/42_.html

 You'll note that the directory path includes the Drupal site name, enabling
 support for multi-site Drupal installations.


 HOW BOOST WORKS
 ---------------
 Once Boost has been installed and enabled, page requests by anonymous
 visitors will be cached as static HTML pages in the server's file system.
 Periodically (when the Drupal cron runs) stale or expired pages
 (i.e. files or pages exceeding the maximum cache lifetime setting)
 will be purged, allowing them to be recreated the first time that the
 next anonymous visitor requests that page again. If the Cron Crawler
 is enabled, the files and pages will be regenerated automatically.

 New rewrite rules are added to the .htaccess file supplied with Drupal,
 directing the web server to try and fulfill page requests by anonymous
 visitors first and foremost from the static page cache, and to only pass the
 request through to Drupal if the requested page is not cacheable or hasn't yet
 been cached.


 DISPATCH MECHANISM
 ------------------
 For each incoming page request, the new Apache mod_rewrite directives in
 .htaccess will check if a cached version of the requested page should be
 served as per the following simple rules:

  1. First, we check that the HTTP request method being used is GET.
     POST requests are not cacheable, and are passed through to Drupal.

  2. Since only anonymous visitors can benefit from the static page cache at
     present, we check that the page request doesn't include a cookie that
     is set when a user logs in to the Drupal site. If the cookie is
     present, we simply let Drupal handle the page request dynamically.

  3. Now, for the important bit: we check whether we actually have a cached
     HTML file for the request URL path available in the file system cache.
     If we do, we direct the web server to serve that file directly and to
     terminate the request immediately after; in this case, Drupal (and
     indeed PHP) is never invoked, meaning the page request will be served
     by the web server itself at full speed.

  4. If, however, we couldn't locate a cached version of the page, we just
     pass the request on to Drupal, which will serve it dynamically in the
     normal manner.


 LIMITATIONS
 -----------
 * Only anonymous visitors will be served cached versions of pages;
   authenticated users will get dynamic content. This will limit the
   usefulness of this module for those community sites that require user
   registration and login for active participation.

 * In contrast to Drupal's built-in caching, static caching will lose any
   additional HTTP headers set for an HTML page by a module. This is unlikely
   to be problem except for some very specific modules and rare use cases.

 * Web server software other than Apache is not supported at the moment.
   Adding Lighttpd support would be desirable but is not a high priority for
   the developer at present (see TODO.txt). (Note that while the LiteSpeed web
   server has not been specifically tested by the developer, it may, in fact,
   work, since they claim to support .htaccess files and to have mod_rewrite
   compatibility. Feedback on this would be appreciated.)


 HANDBOOK PAGES
 --------------
 Boost handbook			http://drupal.org/node/545664

 Installation & Settings	http://drupal.org/node/545908

 Boost Tips & Tricks		http://drupal.org/node/583264

 FAQ & Future Features		http://drupal.org/node/546134

 Using & Blogging About Boost	http://drupal.org/node/546834


 BOOST PROJECT & DRUPAL LINKS
 ----------------------------
 Boost project page		http://drupal.org/project/boost

 ** Post feature requests and bug reports:
 Boost issue que		http://drupal.org/project/issues/boost

 ** The Drupal 'post installation' forum:
 Drupal Help Forum		http://drupal.org/forum/22

 ** The original blog post about Boost:
 http://bendiken.net/2006/05/28/static-page-caching-for-drupal


 CREDITS
 -------
 Originally Developed by Arto Bendiken(arto) http://bendiken.net

 Ported to Drupal 5.x by Alexander I. Grafov(axel) http://drupal.ru

 Ported to Drupal 6.x by Ben Lavender(bhuga) http://bhuga.net

 Miscellaneous contributions by Jacob Peddicord, Justin Miller & Barry Jaspan.

 6.x Developer and Maintainer, Mike Carper(mikeytown2) of http://316solutions.net


 END OF FILE
 -----------

File

README.txt
View source
  1. BOOST MODULE FOR DRUPAL 6.x
  2. ---------------------------
  3. CONTENTS OF THIS README
  4. -----------------------
  5. * Description
  6. * Features
  7. * Requirements
  8. * Recommended Modules
  9. * Installation
  10. * System Check & Verify Functions
  11. * Boost Administrative and Stats Blocks
  12. * Configuration Tips
  13. * Important Notes & Troubleshooting
  14. * File System Cache
  15. * How Boost Works
  16. * Dispatch Mechanism
  17. * Limitations
  18. * Boost Handbook Links
  19. * Boost Project & Drupal Links
  20. * Credits
  21. DESCRIPTION
  22. -----------
  23. This module provides static page caching for Drupal 6.x websites.
  24. It provides a significant performance increase as well as
  25. scalability for sites that receive mostly anonymous traffic.
  26. Web pages load very fast from the cache instead of waiting on
  27. PHP and Drupal to serve them from the database. If the page is
  28. not found in the cache, then the request is passed to Drupal.
  29. The built-in crawler makes sure expired content is quickly
  30. regenerated to insure fast page loading at all times.
  31. The guy that is writing this could brag about Boost,
  32. but he will let you do that part. Enjoy!
  33. FEATURES
  34. --------
  35. *** This is a partial list, because it could take the whole page.
  36. * Fast page serving for anonymous visitors to your Drupal website.
  37. * Reduces web server load and increases your site's scalability.
  38. * On-demand page caching (static file created after first page request).
  39. * Uses cron run to trigger cleaning of cached files.
  40. * Built in crawler to automatically regenerate cached files.
  41. * Adjustable cache lifetimes for different parts of the website.
  42. * Supports HTML, XML, CSS, JavaScript, JSON/AJAX.
  43. * Injects HTML comment to provide easy verification of Boost.
  44. * Supports shared, VPS and dedicated hosting.
  45. * Supports sub-directory Installations.
  46. * Full support for multi-site Drupal installations.
  47. REQUIREMENTS
  48. ------------
  49. Boost is designed for Drupal 6.x served by Apache on any platform.
  50. Drupal's clean URLs MUST be enabled and working properly.
  51. If the cached files and pages must be cleared at their expired time,
  52. the cron run for Drupal must be correctly setup to execute more often than,
  53. or as often as the cache lifetime you specify in the settings.
  54. Since the static page caching is implemented with mod_rewrite directives,
  55. Apache version 1.3 or 2.x with mod_rewrite enabled is required (if Drupal's
  56. clean URLs work for you, you're fine; if not, get them working first).
  57. Other web servers, such as Lighttpd, are NOT officially supported at present.
  58. Lighttpd: http://drupal.org/node/150909
  59. Nginx: http://drupal.org/node/244072
  60. RECOMMENDED MODULES
  61. -------------------
  62. Path (Drupal Core)
  63. Global Redirect http://drupal.org/project/globalredirect
  64. Transliteration http://drupal.org/project/transliteration
  65. Pathauto http://drupal.org/project/pathauto
  66. Token http://drupal.org/project/token
  67. Optional if cron configuration is not available on your server.
  68. Poormanscron 1.1 or 2.0 http://drupal.org/project/poormanscron
  69. If enabled [x] Clear all cached pages referenced via CCK with a node...
  70. The node referrer module is recommended.
  71. Node Referrer http://drupal.org/project/nodereferrer
  72. INSTALLATION
  73. ------------
  74. 1. Goto: [Administer > Site configuration > Clean URLs] and ensure that
  75. Drupal's clean URLs are enabled and working correctly on your site.
  76. 2. Unzip and upload the module folder (as is) to the sites/all/modules
  77. folder in your Drupal installation directory.
  78. 3. Goto: [Administer > Site building > Modules] and enable the Boost
  79. module. You will find it in the section labeled "Caching".
  80. 4. Goto: [Administer > Site configuration > Performance > Boost settings]
  81. Specify the cache directory, which should be something like
  82. cache/normal/www.example.com (keeping the default directory is recommended)
  83. and must be writeable by the web server: you may need to create the
  84. directory, and set the permissions so it is writeable.
  85. On the [Administer > Site configuration > Performance > Boost settings]
  86. page is the Default maximum cache lifetime setting. As cached pages are
  87. created, they are given an expire by date and time, which is the current
  88. date and time plus the maximum cache lifetime. These dates and times are
  89. checked on each cron run; and if a page is expired, the cache is cleared,
  90. and a new cached version will be created the next time the page is
  91. called upon by an anonymous user (including bots). The page will be
  92. regenerated by the Boost crawler if enabled on the Boost settings page.
  93. 5. IMPORTANT:
  94. --- This step is easy and required for Boost to work! ---
  95. Back up the original .htaccess file from your Drupal installation directory
  96. for safe keeping. Copy the custom generated htaccess rule from
  97. [Administer > Site configuration > Performance > htaccess rules generation]
  98. page and paste the rules into the Drupal htaccess file as shown below.
  99. # RewriteBase /
  100. -------paste the rules right here--------
  101. # Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
  102. In the boost/htaccess/ folder, the default.txt file shows you
  103. the exact placement of the rules, in case your not sure.
  104. The module package has 3 htaccess templates included in the Boost/htaccess
  105. folder (boosted1.txt, boosted2.txt and default.txt). These templates may
  106. be helpful in some cases and are good for reference. For the technically
  107. inclined, the difference between the two .htaccess templates is due
  108. to boosted1.txt relying on SERVER_NAME versus boosted2.txt using HTTP_HOST.
  109. There are valid use cases for both in more advanced multi-site installations.
  110. Note: If you get "400 Bad Request" responses from Apache server, make sure
  111. you have configured RewriteBase as documented in
  112. http://drupalcode.org/viewvc/drupal/drupal/.htaccess?view=markup&pathrev=DRUPAL-6
  113. For example when using VirtualHost configurations it is necessary to define as:
  114. RewriteBase /
  115. 6. Goto: [Administer > Site configuration > Performance]
  116. Check and set the Drupal cache settings as desired.
  117. 7. Prepare robots.txt file for search engines.
  118. Add "Disallow: /boost_stats.php" to the robots.txt file as shown below.
  119. # Files
  120. Disallow: /boost_stats.php
  121. Disallow: /CHANGELOG.txt
  122. .....
  123. .....
  124. SYSTEM CHECK AND VERIFY FUNCTIONS
  125. ---------------------------------
  126. 1. Log out from Drupal (or use another browser) to browse around your site
  127. as the anonymous user. Ensure that static files are indeed being
  128. generated into the Boost cache directory you specified above (#4); and if
  129. you opt to use gzip, likewise check gzipped files are being generated in
  130. the directory you specified for this.
  131. The Administer > Performance > Boost settings page shows how many pages
  132. are cached by Boost.
  133. 2. Check the Drupal status page [Administer > Reports > Status report]
  134. for any errors or notices.
  135. 3. To check whether you have a cached or dynamic version of a page,
  136. look at the very end of the page's HTML source. You have the cached
  137. version if the last line looks like this:
  138. BOOST ADMINISTRATIVE AND STATS BLOCKS
  139. -------------------------------------
  140. There are 2 blocks that you can add to help with the administrative
  141. side (status, page configuration), and 1 block to support core stats.
  142. Goto: (administer > Site building > Blocks > List) to place them.
  143. The visibility of blocks can also be configured by role and page.
  144. On the Blocks list page, to the right of each block click 'configure'.
  145. * Status Block
  146. This block shows the current status of the page as far as Boost is
  147. concerned. It will state if the page is served 'live' or by 'Boost',
  148. the expiration of the page and has a Flush Page button to clear the
  149. page from the cache manually. The block only appears if your not user
  150. 0 and provides useful information about PHP errors on the page.
  151. * Page configuration Block
  152. This block allows the administrator to set pages individually.
  153. Including setting for maximum cache lifetime(select box), preemptive
  154. cache(on or off), scope(page ID, content type or content container).
  155. * Stats Block
  156. Drupal's core stats is supported. Configure the "Popular content" block, but
  157. then disable it. Place the "Boost: AJAX core statistics" in its place. If ajax
  158. stats are loading too slowly, copy stats/boost_stats.php to your webroot and
  159. enable "Cache Statistics Block". The cache gets updated on cron runs.
  160. CONFIGURATION TIPS
  161. ------------------
  162. For the (i18n) and the (Domain) modules:
  163. Enable
  164. [x] Do not store the cache file path in the database
  165. [x] Flush all sites caches in this database (singe db, multi-site)
  166. Disable
  167. [ ] Only allow ASCII characters in path
  168. Enable XML & AJAX/JSON caches
  169. Enable
  170. [x] Cache .xml & /feed
  171. [x] Cache ajax/json
  172. To Use the Cron Crawler
  173. Enable
  174. [x] Overwrite the cached file if it already exits
  175. [x] Expire content in DB, do not flush file.
  176. [x] Enable the cron crawler
  177. IMPORTANT NOTES AND TROUBLESHOOTING
  178. -----------------------------------
  179. * If cron is not clearing the cache as expected.
  180. Set $base_url variable in /sites/default/settings.php (line 125 or so)
  181. so cron runs error free and clears the cache properly when invoked like
  182. 'php /path/to/cron.php' or 'drush cron'. This should be something like
  183. http://www.example.com
  184. Guide for editing settings.php
  185. http://drupal.org/node/367081#comment-1504894
  186. * If your Drupal URL paths contain non-ASCII characters, you may have to
  187. tweak your locate settings on the server in order to ensure the URL paths
  188. get correctly translated into directory paths in the file system.
  189. You can also turn off the ASCII filter in the Boost Advanced Settings.
  190. OR install the Transliteration module to help fix the characters.
  191. FILE SYSTEM CACHE
  192. -----------------
  193. The cached files are stored (by default) in the cache/normal/ directory
  194. under your Drupal installation directory. The Drupal pages' URL paths
  195. are translated into file system names in the following manner:
  196. http://example.com/
  197. => cache/normal/example.com/_.html
  198. http://example.com/about
  199. => cache/normal/example.com/about_.html
  200. http://example.com/about/staff
  201. => cache/normal/example.com/about/staff_.html
  202. http://example.com/node/42
  203. => cache/normal/example.com/node/42_.html
  204. You'll note that the directory path includes the Drupal site name, enabling
  205. support for multi-site Drupal installations.
  206. HOW BOOST WORKS
  207. ---------------
  208. Once Boost has been installed and enabled, page requests by anonymous
  209. visitors will be cached as static HTML pages in the server's file system.
  210. Periodically (when the Drupal cron runs) stale or expired pages
  211. (i.e. files or pages exceeding the maximum cache lifetime setting)
  212. will be purged, allowing them to be recreated the first time that the
  213. next anonymous visitor requests that page again. If the Cron Crawler
  214. is enabled, the files and pages will be regenerated automatically.
  215. New rewrite rules are added to the .htaccess file supplied with Drupal,
  216. directing the web server to try and fulfill page requests by anonymous
  217. visitors first and foremost from the static page cache, and to only pass the
  218. request through to Drupal if the requested page is not cacheable or hasn't yet
  219. been cached.
  220. DISPATCH MECHANISM
  221. ------------------
  222. For each incoming page request, the new Apache mod_rewrite directives in
  223. .htaccess will check if a cached version of the requested page should be
  224. served as per the following simple rules:
  225. 1. First, we check that the HTTP request method being used is GET.
  226. POST requests are not cacheable, and are passed through to Drupal.
  227. 2. Since only anonymous visitors can benefit from the static page cache at
  228. present, we check that the page request doesn't include a cookie that
  229. is set when a user logs in to the Drupal site. If the cookie is
  230. present, we simply let Drupal handle the page request dynamically.
  231. 3. Now, for the important bit: we check whether we actually have a cached
  232. HTML file for the request URL path available in the file system cache.
  233. If we do, we direct the web server to serve that file directly and to
  234. terminate the request immediately after; in this case, Drupal (and
  235. indeed PHP) is never invoked, meaning the page request will be served
  236. by the web server itself at full speed.
  237. 4. If, however, we couldn't locate a cached version of the page, we just
  238. pass the request on to Drupal, which will serve it dynamically in the
  239. normal manner.
  240. LIMITATIONS
  241. -----------
  242. * Only anonymous visitors will be served cached versions of pages;
  243. authenticated users will get dynamic content. This will limit the
  244. usefulness of this module for those community sites that require user
  245. registration and login for active participation.
  246. * In contrast to Drupal's built-in caching, static caching will lose any
  247. additional HTTP headers set for an HTML page by a module. This is unlikely
  248. to be problem except for some very specific modules and rare use cases.
  249. * Web server software other than Apache is not supported at the moment.
  250. Adding Lighttpd support would be desirable but is not a high priority for
  251. the developer at present (see TODO.txt). (Note that while the LiteSpeed web
  252. server has not been specifically tested by the developer, it may, in fact,
  253. work, since they claim to support .htaccess files and to have mod_rewrite
  254. compatibility. Feedback on this would be appreciated.)
  255. HANDBOOK PAGES
  256. --------------
  257. Boost handbook http://drupal.org/node/545664
  258. Installation & Settings http://drupal.org/node/545908
  259. Boost Tips & Tricks http://drupal.org/node/583264
  260. FAQ & Future Features http://drupal.org/node/546134
  261. Using & Blogging About Boost http://drupal.org/node/546834
  262. BOOST PROJECT & DRUPAL LINKS
  263. ----------------------------
  264. Boost project page http://drupal.org/project/boost
  265. ** Post feature requests and bug reports:
  266. Boost issue que http://drupal.org/project/issues/boost
  267. ** The Drupal 'post installation' forum:
  268. Drupal Help Forum http://drupal.org/forum/22
  269. ** The original blog post about Boost:
  270. http://bendiken.net/2006/05/28/static-page-caching-for-drupal
  271. CREDITS
  272. -------
  273. Originally Developed by Arto Bendiken(arto) http://bendiken.net
  274. Ported to Drupal 5.x by Alexander I. Grafov(axel) http://drupal.ru
  275. Ported to Drupal 6.x by Ben Lavender(bhuga) http://bhuga.net
  276. Miscellaneous contributions by Jacob Peddicord, Justin Miller & Barry Jaspan.
  277. 6.x Developer and Maintainer, Mike Carper(mikeytown2) of http://316solutions.net
  278. END OF FILE
  279. -----------