手册:$wgHitcounterUpdateFreq
此功能已在版本1.25.0中完全移除。 |
统计和内容分析: $wgHitcounterUpdateFreq | |
---|---|
设置应该更新页面计数器的频率。 |
|
引进版本: | 1.2.0 |
移除版本: | 1.25.0 (Gerrit change 150699; git #90d90dad) |
允许的值: | (整数) |
默认值: | 1 |
其他设置: 按首字母排序 | 按功能排序 |
This feature is used in extension HitCounters since REL1_25+.
细节
设置应该更新页面计数器的频率,在数据库上更容易获得更高的值。 A value of 1 causes the counters to be updated on every hit, any higher value n cause them to update on average every n hits. Should be set to either 1 or something largish, e.g. 1000, for maximum efficiency.
To disable the page counters entirely, set $wgDisableCounters
to true.
This setting is ignored if using sqlite for the database.
技术细节
When this setting is set to a number bigger than 1, the page id of any page viewed is stored in the hitcounter
table.
About 1 in every ($wgHitcounterUpdateFreq
)*0.25 hits, the number of entries in the hit counter table is checked.
If there is more than $wgHitcounterUpdateFreq
entries in the hitcounter
table, then those pageviews are transfered in batch to the page_counter
field (and the hitcounter
table is emptied).
參見
- Extension:HitCounters - 作为MediaWiki 1.25+的替代