]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Differentiate between empty values and cache misses in CacheLogPlugin
authorEvan Prodromou <evan@status.net>
Mon, 4 Jan 2010 19:57:48 +0000 (09:57 -1000)
committerEvan Prodromou <evan@status.net>
Mon, 4 Jan 2010 19:57:48 +0000 (09:57 -1000)
plugins/CacheLogPlugin.php

index 9eb04641e6b2ba24e1c77e300b449e47feb1388b..f1e5dd83aa2c7931fb8c4e1aa14bb6a90d3eb14c 100644 (file)
@@ -61,7 +61,7 @@ class CacheLogPlugin extends Plugin
 
     function onEndCacheGet($key, &$value)
     {
-        if (is_null($value)) {
+        if ($value === false) {
             $this->log(LOG_INFO, "Cache MISS for key '$key'");
         } else {
             $this->log(LOG_INFO, "Cache HIT for key '$key'");
@@ -71,7 +71,21 @@ class CacheLogPlugin extends Plugin
 
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
-        $this->log(LOG_INFO, "Setting cache value for key '$key'");
+        if (empty($value)) {
+            if (is_array($value)) {
+                $this->log(LOG_INFO, "Setting empty array for key '$key'");
+            } else if (is_null($value)) {
+                $this->log(LOG_INFO, "Setting null value for key '$key'");
+            } else if (is_string($value)) {
+                $this->log(LOG_INFO, "Setting empty string for key '$key'");
+            } else if (is_integer($value)) {
+                $this->log(LOG_INFO, "Setting integer 0 for key '$key'");
+            } else {
+                $this->log(LOG_INFO, "Setting empty value '$value' for key '$key'");
+            }
+        } else {
+            $this->log(LOG_INFO, "Setting non-empty value for key '$key'");
+        }
         return true;
     }