MediaWiki REL1_41
|
Class to invalidate the CDN and HTMLFileCache entries associated with URLs/titles. More...
Public Member Functions | |
__construct (HookContainer $hookContainer, TitleFactory $titleFactory, $reboundDelay, $useFileCache, $cdnMaxAge) | |
getUrls (PageReference $page, int $flags=0) | |
Get a list of URLs to purge from the CDN cache when this page changes. | |
purgeTitleUrls ( $pages, $flags=self::PURGE_PRESEND, array $unless=[]) | |
Purge the CDN/HTMLFileCache for a title or the titles yielded by an iterator. | |
purgeUrls ( $urls, $flags=self::PURGE_PRESEND, array $unless=[]) | |
Purge the CDN for a URL or list of URLs. | |
Class to invalidate the CDN and HTMLFileCache entries associated with URLs/titles.
Definition at line 33 of file HtmlCacheUpdater.php.
HtmlCacheUpdater::__construct | ( | HookContainer | $hookContainer, |
TitleFactory | $titleFactory, | ||
$reboundDelay, | |||
$useFileCache, | |||
$cdnMaxAge ) |
HookContainer | $hookContainer | |
TitleFactory | $titleFactory | |
int | $reboundDelay | $wgCdnReboundPurgeDelay |
bool | $useFileCache | $wgUseFileCache |
int | $cdnMaxAge | $wgCdnMaxAge |
Definition at line 98 of file HtmlCacheUpdater.php.
HtmlCacheUpdater::getUrls | ( | PageReference | $page, |
int | $flags = 0 ) |
Get a list of URLs to purge from the CDN cache when this page changes.
PageReference | $page | |
int | $flags | Bit field of PURGE_URLS_* class constants (optional). |
Definition at line 205 of file HtmlCacheUpdater.php.
Referenced by purgeTitleUrls().
HtmlCacheUpdater::purgeTitleUrls | ( | $pages, | |
$flags = self::PURGE_PRESEND, | |||
array | $unless = [] ) |
Purge the CDN/HTMLFileCache for a title or the titles yielded by an iterator.
All cacheable canonical URLs associated with the titles will be purged from CDN. All cacheable actions associated with the titles will be purged from HTMLFileCache.
Traversable | PageReference[] | PageReference | $pages | PageReference or iterator yielding PageReference instances |
int | $flags | Bit field of class PURGE_* constants [Default: HtmlCacheUpdater::PURGE_PRESEND] |
mixed[] | $unless | Optional map of (HtmlCacheUpdater::UNLESS_* constant => value) |
Definition at line 161 of file HtmlCacheUpdater.php.
References getUrls(), HtmlFileCacheUpdate\newFromPages(), and purgeUrls().
HtmlCacheUpdater::purgeUrls | ( | $urls, | |
$flags = self::PURGE_PRESEND, | |||
array | $unless = [] ) |
Purge the CDN for a URL or list of URLs.
string[] | string | $urls | URL or list of URLs |
int | $flags | Bit field of class PURGE_* constants [Default: HtmlCacheUpdater::PURGE_PRESEND] |
mixed[] | $unless | Optional map of (HtmlCacheUpdater::UNLESS_* constant => value) |
Definition at line 129 of file HtmlCacheUpdater.php.
Referenced by purgeTitleUrls().