Manual:PurgeParserCache.php
Appearance
Outdated translations are marked like this.
Versão MediaWiki: | ≥ 1.18 |
Arquivo MediaWiki: purgeParserCache.php | |
---|---|
Local: | maintenance/ |
Código fonte: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Classes: | PurgeParserCache |
Detalhes
O arquivo purgeParserCache.php é um script de manutenção que remove objetos antigos do cache do analisador. This script only works when the parser cache is in an SQL database, by setting $wgMainCacheType or $wgParserCacheType to their appropriate values.
Opções
Opção/Parâmetro | Descrição | Required? |
---|---|---|
--expiredate | Delete objects expiring before this date. The date can be specified in any format supported by the strtotime() function, like, for example, 20241025030433. | Optional |
--age | Delete objects created more than this many seconds ago, assuming $wgParserCacheExpireTime has been consistent. | Optional |
--dry-run | Perform a dry run, to verify age and date calculation. | Optional |
--msleep | Milliseconds to sleep between purge chunks of $wgUpdateRowsPerQuery. | Optional |
--tag | Purge a single server only. This feature is designed for use by large wiki farms where one has to purge multiple servers concurrently in order to keep up with new writes. This requires using the SqlBagOStuff "servers" option in $wgObjectCaches . | Optional |
You must specify either expiredate
or age
.
Uso
php maintenance/purgeParserCache.php [ --expiredate| --age | --dry-run| --msleep| --tag ]
Terminal
$ php maintenance/purgeParserCache.php --age 30 Deleting objects expiring before Tue, 29 Mar 2022 03:02:49 GMT ... 81.9% done (+1 iterations in 0.0s) ... 100.0% done (+2 iterations in 0.0s) Done