clear_stats.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 32 行

PHP
32
字号
<?phprequire_once('commandLine.inc');foreach ( $wgLocalDatabases as $db ) {	noisyDelete("$db:stats:request_with_session");	noisyDelete("$db:stats:request_without_session");	noisyDelete("$db:stats:pcache_hit");	noisyDelete("$db:stats:pcache_miss_invalid");	noisyDelete("$db:stats:pcache_miss_expired");	noisyDelete("$db:stats:pcache_miss_absent");	noisyDelete("$db:stats:pcache_miss_stub");	noisyDelete("$db:stats:image_cache_hit");	noisyDelete("$db:stats:image_cache_miss");	noisyDelete("$db:stats:image_cache_update");	noisyDelete("$db:stats:diff_cache_hit");	noisyDelete("$db:stats:diff_cache_miss");	noisyDelete("$db:stats:diff_uncacheable");}function noisyDelete( $key ) {	global $wgMemc;	/*	print "$key ";	if ( $wgMemc->delete($key) ) {		print "deleted\n";	} else {		print "FAILED\n";	}*/	$wgMemc->delete($key);}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?