Home
last modified time | relevance | path

Searched refs:CLIENT_FORCE_REPL (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dserver.c2364 if (flags & PROPAGATE_REPL) c->flags |= CLIENT_FORCE_REPL; in forceCommandPropagation()
2438 c->flags &= ~(CLIENT_FORCE_AOF|CLIENT_FORCE_REPL|CLIENT_PREVENT_PROP); in call()
2459 if (c->flags & CLIENT_FORCE_REPL) in call()
2460 server.lua_caller->flags |= CLIENT_FORCE_REPL; in call()
2493 if (c->flags & CLIENT_FORCE_REPL) propagate_flags |= PROPAGATE_REPL; in call()
2515 c->flags &= ~(CLIENT_FORCE_AOF|CLIENT_FORCE_REPL|CLIENT_PREVENT_PROP); in call()
2517 (CLIENT_FORCE_AOF|CLIENT_FORCE_REPL|CLIENT_PREVENT_PROP); in call()
H A Dserver.h245 #define CLIENT_FORCE_REPL (1<<15) /* Force replication of current cmd. */ macro