mirror of
https://github.com/fluencelabs/redis
synced 2025-06-21 13:01:32 +00:00
minor changes to doc and comments
This commit is contained in:
2
src/db.c
2
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);
|
||||
|
Reference in New Issue
Block a user