]> git.saurik.com Git - redis.git/commitdiff
Now DEBUG OBJECT plays well with swapped out objects
authorantirez <antirez@gmail.com>
Thu, 7 Jan 2010 21:51:58 +0000 (16:51 -0500)
committerantirez <antirez@gmail.com>
Thu, 7 Jan 2010 21:51:58 +0000 (16:51 -0500)
redis.c

diff --git a/redis.c b/redis.c
index f172f144864176c40ba84e640628ac85ec1194ab..7caa81039347a7694207628b461510a12d4624fc 100644 (file)
--- a/redis.c
+++ b/redis.c
@@ -7175,10 +7175,19 @@ static void debugCommand(redisClient *c) {
         }
         key = dictGetEntryKey(de);
         val = dictGetEntryVal(de);
-        addReplySds(c,sdscatprintf(sdsempty(),
-            "+Key at:%p refcount:%d, value at:%p refcount:%d encoding:%d serializedlength:%lld\r\n",
+        if (server.vm_enabled && key->storage == REDIS_VM_MEMORY) {
+            addReplySds(c,sdscatprintf(sdsempty(),
+                "+Key at:%p refcount:%d, value at:%p refcount:%d "
+                "encoding:%d serializedlength:%lld\r\n",
                 (void*)key, key->refcount, (void*)val, val->refcount,
                 val->encoding, rdbSavedObjectLen(val)));
+        } else {
+            addReplySds(c,sdscatprintf(sdsempty(),
+                "+Key at:%p refcount:%d, value swapped at: page %llu "
+                "using %llu pages\r\n",
+                (void*)key, key->refcount, (unsigned long long) key->vm.page,
+                (unsigned long long) key->vm.usedpages));
+        }
     } else if (!strcasecmp(c->argv[1]->ptr,"swapout") && c->argc == 3) {
         dictEntry *de = dictFind(c->db->dict,c->argv[2]);
         robj *key, *val;