Changes between Version 1 and Version 2 of WebCache


Ignore:
Timestamp:
Apr 25, 2007, 10:41:35 AM (17 years ago)
Author:
Nicolas
Comment:

Required manual changes to automatic conversion.

Legend:

Unmodified
Added
Removed
Modified
  • WebCache

    v1 v2  
    11= Web page caching =
    22
    3       Some pages on your project's web site are accessed often and require lots of database access to generate. To keep this from bogging down your server, BOINC caches these pages. This cache is in PROJECT/html/cache/*; a one-level hashed directory hierarchy is used to deal with large-directory performance problems.
     3Some pages on your project's web site are accessed often and require lots of database access to generate. To keep this from bogging down your server, BOINC caches these pages. This cache is in PROJECT/html/cache/*; a one-level hashed directory hierarchy is used to deal with large-directory performance problems.
     4
    45== Caching configuration ==
    5  The file html/project/cache_parameters.inc contains a number of parameters related to caching:
     6
     7The file html/project/cache_parameters.inc contains a number of parameters related to caching:
    68
    79
     
    2628        Check cache size on every N user accesses to cached pages; default 1000
    2729
     30== Caching and translation ==
    2831
     32BOINC uses several web-page caching systems, which support language translation in different ways.
    2933
    30 == Caching and translation ==
    31  BOINC uses several web-page caching systems, which support language translation in different ways.
    3234 * '''Pre-generated''': Pages are updated from time to time, and do not support translation. The system used for building profiles is a pre-generated cache.
    3335 * '''Fullpage cache''': This cache system simply takes the output of a page and saves it for the future. It uses the start_cache() and end_cache() functions in cache.inc. The pages may not be translation-aware (otherwise some users will see the wrong language).