Commit 4e941eca authored by antirez's avatar antirez
Browse files

short but important comment added

parent 31222292
......@@ -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;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment