Changes between Version 4 and Version 5 of WebCache


Ignore:
Timestamp:
Feb 13, 2013, 12:05:13 AM (11 years ago)
Author:
Christian Beer
Comment:

changed link to source for new git repo

Legend:

Unmodified
Added
Removed
Modified
  • WebCache

    v4 v5  
    3232
    3333 * '''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.
    34  * '''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 [source:trunk/boinc/html/inc/cache.inc cache.inc]. The pages may not be translation-aware (otherwise some users will see the wrong language).
     34 * '''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 [source:boinc/html/inc/cache.inc cache.inc]. The pages may not be translation-aware (otherwise some users will see the wrong language).
    3535 * '''Fullpage cache with translation''': You can make the language part of the cache filename. (To do this, you need to adapt the code in `cache.inc`). This can be inefficient because it stores a separate copy of the page for each language.
    3636 * '''Object cache''': This stores the data used to create the page and recreates the page every time (using any language you'd like). Use `get_cached_data()` in `cache.inc`. This is perfect for pages that are accessed commonly and by people from many nationalities (currently the top-X pages support it).