From 7a33f017483ca056c0f72f7bea50b49f181362e0 Mon Sep 17 00:00:00 2001 From: Erick Hitter <ehitter@gmail.com> Date: Mon, 3 Mar 2014 21:44:44 -0800 Subject: [PATCH] Note that Redis was used in stats output --- object-cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/object-cache.php b/object-cache.php index 4b13005..c4badcc 100644 --- a/object-cache.php +++ b/object-cache.php @@ -591,6 +591,7 @@ class WP_Object_Cache { ?><p> <strong>Cache Hits:</strong> <?php echo number_format_i18n( $this->cache_hits ); ?><br /> <strong>Cache Misses:</strong> <?php echo number_format_i18n( $this->cache_misses ); ?><br /> + <strong>Using Redis?</strong> <?php echo $this->can_redis() ? 'yes' : 'no'; ?><br /> </p> <p> </p> <p><strong>Caches Retrieved:</strong></p> -- GitLab