return val;
readerr:
+ redisLog(REDIS_WARNING,"Read error reading reading %s. Corrupted key?",
+ buf);
redisPanic("Unrecoverable error reading from disk store");
return NULL; /* unreached */
}
pthread_cond_wait(&server.io_condvar,&server.io_mutex);
continue;
}
+ redisLog(REDIS_DEBUG,"%ld IO jobs to process",
+ listLength(server.io_newjobs));
ln = listFirst(server.io_newjobs);
j = ln->value;
listDelNode(server.io_newjobs,ln);
void cacheCron(void) {
time_t now = time(NULL);
listNode *ln;
+ int jobs, topush = 0;
+
+ /* Sync stuff on disk, but only if we have less than 100 IO jobs */
+ lockThreadedIO();
+ jobs = listLength(server.io_newjobs);
+ unlockThreadedIO();
+
+ topush = 100-jobs;
+ if (topush < 0) topush = 0;
- /* Sync stuff on disk */
while((ln = listFirst(server.cache_flush_queue)) != NULL) {
dirtykey *dk = ln->value;
+ if (!topush) break;
+ topush--;
+
if ((now - dk->ctime) >= server.cache_flush_delay) {
struct dictEntry *de;
robj *val;