MCPcopy Create free account
hub / github.com/F-Stack/f-stack / execCommandPropagateMulti

Function execCommandPropagateMulti

app/redis-6.2.6/src/multi.c:130–134  ·  view source on GitHub ↗

Send a MULTI command to all the slaves and AOF file. Check the execCommand * implementation for more information. */

Source from the content-addressed store, hash-verified

128/* Send a MULTI command to all the slaves and AOF file. Check the execCommand
129 * implementation for more information. */
130void execCommandPropagateMulti(int dbid) {
131 beforePropagateMulti();
132 propagate(server.multiCommand,dbid,&shared.multi,1,
133 PROPAGATE_AOF|PROPAGATE_REPL);
134}
135
136void execCommandPropagateExec(int dbid) {
137 propagate(server.execCommand,dbid,&shared.exec,1,

Callers 4

luaRedisGenericCommandFunction · 0.85
propagateFunction · 0.85
callFunction · 0.85

Calls 2

beforePropagateMultiFunction · 0.85
propagateFunction · 0.85

Tested by

no test coverage detected