diff options
author | antirez <antirez@gmail.com> | 2019-05-13 17:30:02 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2019-05-13 17:30:06 +0200 |
commit | 9724ca4e22678038c511d312a78df6e8d9d29374 (patch) | |
tree | 8556624e0c130c70d006ef9e277a635cf257e4f7 /src/networking.c | |
parent | 4f4676a1420a446e4233c04a80f2009aa819b21f (diff) | |
download | redis-9724ca4e22678038c511d312a78df6e8d9d29374.tar.gz |
Make comment in getClientOutputBufferMemoryUsage() describing the present.
Diffstat (limited to 'src/networking.c')
-rw-r--r-- | src/networking.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/networking.c b/src/networking.c index 6fec97605..4bc22120a 100644 --- a/src/networking.c +++ b/src/networking.c @@ -2295,15 +2295,8 @@ void rewriteClientCommandArgument(client *c, int i, robj *newval) { } } -/* This function returns the number of bytes that Redis is virtually +/* This function returns the number of bytes that Redis is * using to store the reply still not read by the client. - * It is "virtual" since the reply output list may contain objects that - * are shared and are not really using additional memory. - * - * The function returns the total sum of the length of all the objects - * stored in the output list, plus the memory used to allocate every - * list node. The static reply buffer is not taken into account since it - * is allocated anyway. * * Note: this function is very fast so can be called as many time as * the caller wishes. The main usage of this function currently is |