Manual:PurgeExpiredWatchlistItems.php/de
Appearance
| MediaWiki Version: | ≥ 1.35 |
| MediaWiki-Datei: purgeExpiredWatchlistItems.php | |
|---|---|
| Speicherort: | maintenance/ |
| Quellcode: | master • 1.45.1 • 1.44.3 • 1.43.6 |
| Klassen: | PurgeExpiredWatchlistItems |
Details
purgeExpiredWatchlistItems.php is a maintenance script that deletes expired rows from the watchlist and watchlist_expiry database tables.
This script should be run periodically, for example, by a cron job.
The recommended periodicity is once or twice a day, to account for users on different timezones.
For improved site performance, $wgWatchlistPurgeRate can be set to 0.
Optionen
This script doesn't have any of its own parameters, and the most useful of the generic parameters is probably --batch-size, which determines how many rows will be deleted on each run (defaults to 500).
Verwendung
php maintenance/run.php purgeExpiredWatchlistItems
Terminal
$ php maintenance/run.php purgeExpiredWatchlistItems 7 expired watchlist entries found. All expired entries purged.
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.
Häufiger Fehler
- Watchlist expiry is not enabled.
An error is thrown if $wgWatchlistExpiry is not true.
Set $wgWatchlistExpiry = true; to enable.