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

Function setDeferredMapLen

app/redis-6.2.6/src/networking.c:649–653  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

647}
648
649void setDeferredMapLen(client *c, void *node, long length) {
650 int prefix = c->resp == 2 ? '*' : '%';
651 if (c->resp == 2) length *= 2;
652 setDeferredAggregateLen(c,node,length,prefix);
653}
654
655void setDeferredSetLen(client *c, void *node, long length) {
656 int prefix = c->resp == 2 ? '*' : '~';

Callers 5

configGetCommandFunction · 0.85
luaReplyToRedisReplyFunction · 0.85
sentinelConfigGetCommandFunction · 0.85
xreadCommandFunction · 0.85

Calls 1

setDeferredAggregateLenFunction · 0.85

Tested by

no test coverage detected