Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dserver.c2365 if (flags & PROPAGATE_AOF) c->flags |= CLIENT_FORCE_AOF; in forceCommandPropagation()
2438 c->flags &= ~(CLIENT_FORCE_AOF|CLIENT_FORCE_REPL|CLIENT_PREVENT_PROP); in call()
2461 if (c->flags & CLIENT_FORCE_AOF) in call()
2462 server.lua_caller->flags |= CLIENT_FORCE_AOF; in call()
2494 if (c->flags & CLIENT_FORCE_AOF) propagate_flags |= PROPAGATE_AOF; 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.h244 #define CLIENT_FORCE_AOF (1<<14) /* Force AOF propagation of current cmd. */ macro