+
+ /* Try to expire a few timed out keys */
+ for (j = 0; j < server.dbnum; j++) {
+ redisDb *db = server.db+j;
+ int num = dictSize(db->expires);
+
+ if (num) {
+ time_t now = time(NULL);
+
+ if (num > REDIS_EXPIRELOOKUPS_PER_CRON)
+ num = REDIS_EXPIRELOOKUPS_PER_CRON;
+ while (num--) {
+ dictEntry *de;
+ time_t t;
+
+ if ((de = dictGetRandomKey(db->expires)) == NULL) break;
+ t = (time_t) dictGetEntryVal(de);
+ if (now > t) {
+ deleteKey(db,dictGetEntryKey(de));
+ }
+ }
+ }
+ }
+