Home
last modified time | relevance | path

Searched refs:PROPAGATE_AOF (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dscripting.c571 if (server.lua_repl & PROPAGATE_AOF) in luaRedisGenericCommand()
784 if ((flags & ~(PROPAGATE_AOF|PROPAGATE_REPL)) != 0) { in luaRedisSetReplCommand()
999 lua_pushnumber(lua,PROPAGATE_AOF); in scriptingInit()
1011 lua_pushnumber(lua,PROPAGATE_AOF|PROPAGATE_REPL); in scriptingInit()
1283 server.lua_repl = PROPAGATE_AOF|PROPAGATE_REPL; in evalGenericCommand()
1422 PROPAGATE_AOF|PROPAGATE_REPL); in evalGenericCommand()
1461 forceCommandPropagation(c,PROPAGATE_REPL|PROPAGATE_AOF); in evalGenericCommand()
1520 forceCommandPropagation(c,PROPAGATE_REPL|PROPAGATE_AOF); in scriptCommand()
H A Dt_list.c639 db->id,argv,2,PROPAGATE_AOF|PROPAGATE_REPL); in serveClientBlockedOnList()
661 PROPAGATE_AOF| in serveClientBlockedOnList()
671 PROPAGATE_AOF| in serveClientBlockedOnList()
H A Dmulti.c112 PROPAGATE_AOF|PROPAGATE_REPL); in execCommandPropagateMulti()
H A Dblocked.c367 argv,2,PROPAGATE_AOF|PROPAGATE_REPL); in handleClientsBlockedOnKeys()
H A Dt_set.c491 PROPAGATE_AOF|PROPAGATE_REPL); in spopWithCountCommand()
534 PROPAGATE_AOF|PROPAGATE_REPL); in spopWithCountCommand()
H A Dserver.c2326 if (server.aof_state != AOF_OFF && flags & PROPAGATE_AOF) in propagate()
2365 if (flags & PROPAGATE_AOF) c->flags |= CLIENT_FORCE_AOF; in forceCommandPropagation()
2489 if (dirty) propagate_flags |= (PROPAGATE_AOF|PROPAGATE_REPL); in call()
2494 if (c->flags & CLIENT_FORCE_AOF) propagate_flags |= PROPAGATE_AOF; in call()
2504 propagate_flags &= ~PROPAGATE_AOF; in call()
2531 if (!(flags&CMD_CALL_PROPAGATE_AOF)) target &= ~PROPAGATE_AOF; in call()
H A Dt_stream.c817 propagate(server.xclaimCommand,c->db->id,argv,14,PROPAGATE_AOF|PROPAGATE_REPL); in streamPropagateXCLAIM()
844 propagate(server.xgroupCommand,c->db->id,argv,5,PROPAGATE_AOF|PROPAGATE_REPL); in streamPropagateGroupID()
H A Dmodule.c529 PROPAGATE_AOF|PROPAGATE_REPL); in moduleHandlePropagationAfterCommandCallback()
1350 PROPAGATE_AOF|PROPAGATE_REPL); in RM_Replicate()
1373 PROPAGATE_AOF|PROPAGATE_REPL); in RM_ReplicateVerbatim()
H A Dserver.h424 #define PROPAGATE_AOF 1 macro