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

Function addReplyMapLen

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

Source from the content-addressed store, hash-verified

763}
764
765void addReplyMapLen(client *c, long length) {
766 int prefix = c->resp == 2 ? '*' : '%';
767 if (c->resp == 2) length *= 2;
768 addReplyAggregateLen(c,length,prefix);
769}
770
771void addReplySetLen(client *c, long length) {
772 int prefix = c->resp == 2 ? '*' : '~';

Callers 12

genericHgetallCommandFunction · 0.85
stralgoLCSFunction · 0.85
memoryCommandFunction · 0.85
clientCommandFunction · 0.85
helloCommandFunction · 0.85
aclCommandFunction · 0.85
debugCommandFunction · 0.85
addReplyLoadedModulesFunction · 0.85
xinfoReplyWithStreamInfoFunction · 0.85
xinfoCommandFunction · 0.85

Calls 1

addReplyAggregateLenFunction · 0.85

Tested by

no test coverage detected