2014-05-08 50 views

回答

0

你总是可以看看source of apc.php:负责该输出的代码行是

Request Rate (hits, misses)</td><td>$req_rate cache requests/second 

$req_rate被定义为

$req_rate = sprintf("%.2f",($cache['num_hits']+$cache['num_misses'])/($time-$cache['start_time'])); 

其中$缓存的apc_cache_info()输出。

因此,用普通英语表示的是缓存运行时每秒缓存命中率和未命中总数(因此总请求速率)的平均值。