]> git.saurik.com Git - redis.git/commitdiff
short but important comment added
authorantirez <antirez@gmail.com>
Thu, 30 Dec 2010 18:20:23 +0000 (19:20 +0100)
committerantirez <antirez@gmail.com>
Thu, 30 Dec 2010 18:20:23 +0000 (19:20 +0100)
src/db.c

index d545345cb9fdf893ad4546f99bfa4b1c8ccb364d..1b0289bcd97d4512b6f6b9359a120545ec95946f 100644 (file)
--- a/src/db.c
+++ b/src/db.c
@@ -28,7 +28,9 @@ robj *lookupKey(redisDb *db, robj *key) {
         return val;
     } else {
         /* FIXME: Check if the object is on disk, if it is, load it
-         * in a blocking way now. */
+         * in a blocking way now. If we are sure there are no collisions
+         * it would be cool to load this directly here without IO thread
+         * help. */
         server.stat_keyspace_misses++;
         return NULL;
     }