Skip to content

Commit 7a244bb

Browse files
committed
Merge branch 'unstable' into RELEASE_5
2 parents 3ce6441 + 3eb847e commit 7a244bb

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/help.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,13 @@ struct commandHelp {
11681168
"destination numkeys key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]",
11691169
"Add multiple sorted sets and store the resulting sorted set in a new key",
11701170
4,
1171-
"2.0.0" }
1171+
"2.0.0" },
1172+
{ "KEYDB.CRON",
1173+
"name [single/repeat] [optional: start] delay script numkeys [key N] [arg N]",
1174+
"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)",
1175+
10,
1176+
"6.5.2"
1177+
}
11721178
};
11731179

11741180
#endif

src/server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ struct redisCommand redisCommandTable[] = {
10261026
"read-only fast noprop",
10271027
0,NULL,0,0,0,0,0,0},
10281028

1029-
{"cron",cronCommand,-5,
1029+
{"keydb.cron",cronCommand,-5,
10301030
"write use-memory",
10311031
0,NULL,1,1,1,0,0,0},
10321032
};

0 commit comments

Comments
 (0)