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

Function addReplyAggregateLen

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

Source from the content-addressed store, hash-verified

754}
755
756void addReplyAggregateLen(client *c, long length, int prefix) {
757 serverAssert(length >= 0);
758 addReplyLongLongWithPrefix(c,length,prefix);
759}
760
761void addReplyArrayLen(client *c, long length) {
762 addReplyAggregateLen(c,length,'*');

Callers 5

addReplyArrayLenFunction · 0.85
addReplyMapLenFunction · 0.85
addReplySetLenFunction · 0.85
addReplyAttributeLenFunction · 0.85
addReplyPushLenFunction · 0.85

Calls 1

Tested by

no test coverage detected