REDIS_DBCRON_DBS_PER_SEC -> REDIS_DBCRON_DBS_PER_CALL

This commit is contained in:
antirez
2013-03-09 11:44:20 +01:00
parent 1a73260dce
commit 9afb7789b3
2 changed files with 5 additions and 5 deletions

View File

@ -76,7 +76,7 @@
#define REDIS_CONFIGLINE_MAX 1024
#define REDIS_EXPIRELOOKUPS_PER_CRON 10 /* lookup 10 expires per loop */
#define REDIS_EXPIRELOOKUPS_TIME_PERC 25 /* CPU max % for keys collection */
#define REDIS_DBCRON_DBS_PER_SEC 16
#define REDIS_DBCRON_DBS_PER_CALL 16
#define REDIS_MAX_WRITE_PER_EVENT (1024*64)
#define REDIS_SHARED_SELECT_CMDS 10
#define REDIS_SHARED_INTEGERS 10000