Merge branch 'keydbpro' into PRO_RELEASE_6

Former-commit-id: 197022aa76949664dfd866e0e71602bf23cbc3a0
This commit is contained in:
John Sully 2020-03-01 19:18:56 -05:00
commit 3e3fa1a248
2 changed files with 8 additions and 2 deletions

View File

@ -1168,7 +1168,13 @@ struct commandHelp {
"destination numkeys key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]",
"Add multiple sorted sets and store the resulting sorted set in a new key",
4,
"2.0.0" }
"2.0.0" },
{ "KEYDB.CRON",
"name [single/repeat] [optional: start] delay script numkeys [key N] [arg N]",
"Run a specified script after start + delay, optionally repeating every delay interval. The job may be cancelled by deleting the key associated with the job (name parameter)",
10,
"6.5.2"
}
};
#endif

View File

@ -1029,7 +1029,7 @@ struct redisCommand redisCommandTable[] = {
"read-only fast noprop",
0,NULL,0,0,0,0,0,0},
{"cron",cronCommand,-5,
{"keydb.cron",cronCommand,-5,
"write use-memory",
0,NULL,1,1,1,0,0,0},
};