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

Function addReplyBulk

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

Add a Redis Object as a bulk reply */

Source from the content-addressed store, hash-verified

820
821/* Add a Redis Object as a bulk reply */
822void addReplyBulk(client *c, robj *obj) {
823 addReplyBulkLen(c,obj);
824 addReply(c,obj);
825 addReply(c,shared.crlf);
826}
827
828/* Add a C buffer as bulk reply */
829void addReplyBulkCBuffer(client *c, const void *p, size_t len) {

Callers 15

addReplyPubsubMessageFunction · 0.85
addReplyPubsubPatMessageFunction · 0.85
addReplyPubsubSubscribedFunction · 0.85
pubsubCommandFunction · 0.85
replicationFeedSlavesFunction · 0.85
getGenericCommandFunction · 0.85
getexCommandFunction · 0.85
mgetCommandFunction · 0.85

Calls 2

addReplyBulkLenFunction · 0.85
addReplyFunction · 0.85

Tested by

no test coverage detected