implemented two new INFO fields showing the size of clients max input and output buffers.

This commit is contained in:
antirez
2011-01-14 10:20:02 +01:00
parent 3a73be7524
commit 7a1fd61e3d
3 changed files with 26 additions and 0 deletions

View File

@ -661,6 +661,8 @@ void addReplyDouble(redisClient *c, double d);
void addReplyLongLong(redisClient *c, long long ll);
void addReplyMultiBulkLen(redisClient *c, long length);
void *dupClientReplyValue(void *o);
void getClientsMaxBuffers(unsigned long *longest_output_list,
unsigned long *biggest_input_buffer);
#ifdef __GNUC__
void addReplyErrorFormat(redisClient *c, const char *fmt, ...)