Manual:purgeChangedPages.php
Appearance
| MediaWiki version: | ≥ 1.22 |
| MediaWiki file: purgeChangedPages.php | |
|---|---|
| Location: | maintenance/ |
| Source code: | master • 1.45.3 • 1.44.5 • 1.43.8 |
| Classes: | PurgeChangedPages |
Details
[edit]purgeChangedPages.php file is a maintenance script to send purge requests for pages edited in a date range to squid/varnish. This script can be used to recover from an HTCP message partition or other major cache layer interruption. It processes 100 items in a batch.
Options/Arguments
[edit]| Option | Description | Required? |
|---|---|---|
| --starttime | Starting timestamp | Required |
| --endtime | Ending timestamp | Required |
| --htcp-dest | HTCP announcement destination (IP:port) | Optional |
| --sleep-per-batch | Milliseconds to sleep between batches | Optional |
| --dry-run | Do not send purge requests | Optional |
| --verbose | Show more output | Optional |
Usage
[edit]php maintenance/run.php purgeChangedPages --starttime dt1 --endtime dt2 [ --htcp-dest| --sleep-per-batch| --dry-run| --verbose ]
Terminal
$ php maintenance/run.php purgeChangedPages --starttime 20210101 --endtime 20220115 Processing changes from 20210101 to 20220115. Done!
In MediaWiki version MediaWiki 1.39 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.