📄 cache.page
字号:
<?php/** * Summary of caching */require_once "WEB-INF/php/inc.php";$block_cache = $g_mbean_server->lookup("resin:type=BlockManager");$proxy_cache = $g_mbean_server->lookup("resin:type=ProxyCache");?><h2>Server: <?= $g_server->Id ?></h2><table class="data"> <tr title="Percentage of requests that have been served from the proxy cache:"> <th>Proxy cache miss ratio:</th> <td><?= format_miss_ratio($proxy_cache->HitCountTotal, $proxy_cache->MissCountTotal) ?></td> </tr> <tr title="Percentage of requests that have been served from the proxy cache:"> <th><?= info("Block cache miss ratio") ?>:</th> <td><?= format_miss_ratio($block_cache->HitCountTotal, $block_cache->MissCountTotal) ?></td> </tr><!-- XXX: show how cacheable apps are: cacheable/non-cacheable --> <tr> <th>Invocation miss ratio:</th> <td><?= format_miss_ratio($g_server->InvocationCacheHitCountTotal, $g_server->InvocationCacheMissCountTotal) ?></td> </tr></table><?phpif ($proxy_cache) { $cacheable = $proxy_cache->getCacheableEntries(15); echo "<h3>Cacheable Pages</h3>"; echo "<table class='data'>"; echo "<tr><th>Count</th><th>url</th></tr>\n"; foreach ($cacheable as $item) { echo "<tr>"; echo "<td>{$item->hitCount}</td><td>{$item->url}</td>"; echo "</tr>\n"; } echo "</table>"; $uncacheable = $proxy_cache->getUncacheableEntries(15); echo "<h3>Uncacheable Pages</h3>"; echo "<table class='data'>"; echo "<tr><th>Count</th><th>url</th></tr>\n"; foreach ($uncacheable as $item) { echo "<tr>"; echo "<td>{$item->missCount}</td><td>{$item->url}</td>"; echo "</tr>\n"; } echo "</table>";}?><?php display_footer("cache.php"); ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -