手册:updateArticleCount.php
Appearance
| MediaWiki版本: | ≥ 1.6 |
| MediaWiki文件: updateArticleCount.php | |
|---|---|
| 位置: | maintenance/ |
| 源代码: | master • 1.45.1 • 1.44. • 1.39.16 |
| 类: | UpdateArticleCount |
updateArticleCount.php是维护脚本,用于更新文章数。
It simply counts the total articles on the wiki and updates the statistics in site_stats table.
Options
| Option | Description | Required? |
|---|---|---|
| --update | Update the site_stats table with the new count |
Optional |
| --use-master | Count using the primary database | Optional |
用法
php maintenance/run.php updateArticleCount [ --update| --use-master ]
Terminal
$ php maintenance/run.php updateArticleCount Counting articles...found 40.
它只会计算文章数并输出结果,而不会更新值。
要实际更新站点统计表,请使用--update参数运行脚本。
Terminal
$ php maintenance/run.php updateArticleCount --update Counting articles...found 40. Updating site statistics table... done.