Manual:PurgeChangedPages.php/fi
Appearance
| MediaWiki version: | ≥ 1.22 |
| tiedosto MediaWiki: purgeChangedPages.php | |
|---|---|
| Sijainti: | maintenance/ |
| Lähdekoodi: | master • 1.44.2 • 1.43.5 • 1.39.15 |
| Sarjat: | PurgeChangedPages |
Details
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
| Vaihtoehto | Kuvaus | Pakollinen? |
|---|---|---|
| --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 |
Käyttö
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 1.39.15 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.