WP_Object_Cache::stats() public WP 2.0.0
Echoes the stats of the caching.
Gives the cache hits, and cache misses. Also prints every cached group, key and the data.
{} Это метод класса: WP_Object_Cache{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$WP_Object_Cache = new WP_Object_Cache(); $WP_Object_Cache->stats();
Список изменений
С версии 2.0.0 | Введена. |
Код WP_Object_Cache::stats() WP Object Cache::stats WP 5.7.1
public function stats() {
echo '<p>';
echo "<strong>Cache Hits:</strong> {$this->cache_hits}<br />";
echo "<strong>Cache Misses:</strong> {$this->cache_misses}<br />";
echo '</p>';
echo '<ul>';
foreach ( $this->cache as $group => $cache ) {
echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
}
echo '</ul>';
}