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 c13c4080e5
commit ebb07fb4bb
3 changed files with 26 additions and 0 deletions

View File

@ -656,6 +656,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, ...)