mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 01:01:22 +00:00
Lua script selective replication fixes.
This commit is contained in:
@ -382,9 +382,11 @@ typedef long long mstime_t; /* millisecond time type. */
|
||||
|
||||
/* Command call flags, see call() function */
|
||||
#define CMD_CALL_NONE 0
|
||||
#define CMD_CALL_SLOWLOG 1
|
||||
#define CMD_CALL_STATS 2
|
||||
#define CMD_CALL_PROPAGATE 4
|
||||
#define CMD_CALL_SLOWLOG (1<<0)
|
||||
#define CMD_CALL_STATS (1<<1)
|
||||
#define CMD_CALL_PROPAGATE_AOF (1<<2)
|
||||
#define CMD_CALL_PROPAGATE_REPL (1<<3)
|
||||
#define CMD_CALL_PROPAGATE (CMD_CALL_PROPAGATE_AOF|CMD_CALL_PROPAGATE_REPL)
|
||||
#define CMD_CALL_FULL (CMD_CALL_SLOWLOG | CMD_CALL_STATS | CMD_CALL_PROPAGATE)
|
||||
|
||||
/* Command propagation flags, see propagate() function */
|
||||
|
Reference in New Issue
Block a user