From 4e941ecacb976ec88c04561e2251f01db87146b3 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 30 Dec 2010 19:20:23 +0100 Subject: [PATCH] short but important comment added --- src/db.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index d545345c..1b0289bc 100644 --- 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; } -- 2.45.2