]> git.saurik.com Git - redis.git/blobdiff - src/db.c
minor changes to doc and comments
[redis.git] / src / db.c
index 1a30034e811306e2848c4d27cee2c2511b3789d2..1f185e29ce769aaa834fa4be00e6254af7c9199a 100644 (file)
--- a/src/db.c
+++ b/src/db.c
@@ -19,7 +19,7 @@ robj *lookupKey(redisDb *db, robj *key) {
 
         if (server.ds_enabled && val->storage == REDIS_DS_SAVING) {
             /* FIXME: change this code to just wait for our object to
-             * get out of the IO Job. */
+             * get out of the IO Job. As it is now it is correct but slow. */
             waitEmptyIOJobsQueue();
             processAllPendingIOJobs();
             redisAssert(val->storage != REDIS_DS_SAVING);