Kézikönyv:$wgParserCacheType
Outdated translations are marked like this.
Parser Cache: $wgParserCacheType | |
---|---|
Az elemző-gyorsítótár beállítása. |
|
Bevezetve: | 1.5.0 |
Eltávolítva: | használatban |
Megengedett értékek: | (A CACHE-konstansok egyike) lásd alább |
Alapértelmezett érték: | CACHE_ANYTHING |
Egyéb beállítások: Betűrendben | Funkció szerint |
Részletek
The cache type for storing page content HTML (e.g. parsed from wikitext).
Parsing wikitext is considered an expensive operation. It is recommended to give your parser cache plenty of storage space, such that long tail cache hits are possible.
The default parser cache backend (when MainCacheType is left to CACHE_NONE) is effectively CACHE_DB (SqlBagOStuff). If you set up a main cache type such as memcached, it is recommended to set this explicitly to CACHE_DB.
Az alábbiakban a Defines.php-ban szereplő CACHE-konstansok láthatóak:
CACHE_ANYTHING
- Bármi használata, amíg működikCACHE_NONE
- A gyorsítótárazás letiltásaCACHE_DB
- A gyorsítótárazott elemek adatbázisban való tárolásaCACHE_MEMCACHED
- memcached, a szervereket a Kézikönyv:$wgMemCachedServers -ben rögzíteni szükségesCACHE_ACCEL
- APC, XCache vagy WinCache, attól függően, hogy melyik elérhető, ebben a sorrendben. Az ObjectCache::newAccelerator funkció határozza meg.
Megjegyzés
Advice for large wiki farms:
- Consider allocating a dedicated database to ParserCache. Register it in $wgObjectCaches and point $wgParserCacheType to it.
- Consider using MultiWriteBagOStuff to add a higher tier with Memcached in front of the lower database tier.
- Consider setting
'purgePeriod' => 0
in the dedicated SqlBagOStuff entry in $wgObjectCaches. This disables the automatic purging of expired rows (which would normally happen in the background of write requests). You can then schedule the purgeParserCache.php script to e.g. once a day prune expired rows from the a dedicated maintenance server.