Home
last modified time | relevance | path

Searched refs:pending_querybuf (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dnetworking.c116 c->pending_querybuf = sdsempty(); in createClient()
881 sdsfree(c->pending_querybuf); in freeClient()
1512 c->pending_querybuf, applied); in processInputBufferAndReplicate()
1513 sdsrange(c->pending_querybuf,applied,-1); in processInputBufferAndReplicate()
1562 c->pending_querybuf = sdscatlen(c->pending_querybuf, in readQueryFromClient()
H A Dserver.c886 size_t pending_querybuf_size = sdsAllocSize(c->pending_querybuf); in clientsCronResizeQueryBuffer()
888 sdslen(c->pending_querybuf) < (pending_querybuf_size/2)) in clientsCronResizeQueryBuffer()
890 c->pending_querybuf = sdsRemoveFreeSpace(c->pending_querybuf); in clientsCronResizeQueryBuffer()
H A Dreplication.c2179 sdsclear(server.master->pending_querybuf); in replicationCacheMaster()
H A Dserver.h722 sds pending_querybuf; /* If this client is flagged as master, this buffer member
/f-stack/app/redis-5.0.5/
H A D00-RELEASENOTES2425 Clarify the pending_querybuf field of clients.