| Commit message (Expand) | Author | Age | Files | Lines |
* | BSD license added to every C source and header file. | antirez | 2012-11-08 | 1 | -0/+29 |
* | fix typo in comments (redis.c, networking.c) | Yecheng Fu | 2012-11-01 | 1 | -6/+6 |
* | Unix socket clients properly displayed in MONITOR and CLIENT LIST. | antirez | 2012-11-01 | 1 | -6/+10 |
* | REPLCONF internal command introduced. | antirez | 2012-06-27 | 1 | -0/+1 |
* | Fix c->reply_bytes computation in setDeferredMultiBulkLength() | antirez | 2012-06-15 | 1 | -0/+4 |
* | New client info field added to CLIENT LIST output: multi, containing the leng... | antirez | 2012-04-07 | 1 | -1/+2 |
* | Fixed typo in comment: "te" -> "the". | antirez | 2012-03-29 | 1 | -1/+1 |
* | Fix for slaves chains. Force resync of slaves (simply disconnecting them) wh... | antirez | 2012-03-29 | 1 | -14/+15 |
* | use server.unixtime instead of time(NULL) where possible (cluster.c not check... | Premysl Hruby | 2012-03-27 | 1 | -7/+6 |
* | Reclaim space from the client querybuf if needed. | antirez | 2012-03-14 | 1 | -0/+2 |
* | Process async client checks like client timeouts and BLPOP timeouts increment... | antirez | 2012-03-13 | 1 | -28/+0 |
* | Added a qbuf-free field to CLIENT LIST output. | antirez | 2012-03-13 | 1 | -1/+2 |
* | Client creation time in redisClient structure. New age field in CLIENT LIST o... | antirez | 2012-03-13 | 1 | -2/+3 |
* | c->bufpos initialization moved for aesthetics. | antirez | 2012-03-13 | 1 | -1/+1 |
* | anetPeerToString() automatically populates ip/port with something that may be... | antirez | 2012-03-07 | 1 | -5/+1 |
* | Return ASAP from checkClientOutputBufferLimits() if c->reply_bytes is zero. | antirez | 2012-02-16 | 1 | -1/+1 |
* | Fixes to c->reply_bytes computation, and debug messages to closely study the ... | antirez | 2012-02-07 | 1 | -8/+22 |
* | Precision of getClientOutputBufferMemoryUsage() greatily improved, see issue ... | antirez | 2012-02-07 | 1 | -8/+17 |
* | freeMemoryIfNeeded() minor refactoring | antirez | 2012-02-06 | 1 | -0/+21 |
* | This fixes issue #327, is a very complex fix (unfortunately), details: | antirez | 2012-02-04 | 1 | -3/+8 |
* | Use less memory when emitting the protocol, by using more shared objects for ... | antirez | 2012-02-04 | 1 | -0/+12 |
* | Fixed typo in getClientLimitClassByName() | antirez | 2012-01-25 | 1 | -1/+1 |
* | lenght -> length | antirez | 2012-01-24 | 1 | -1/+1 |
* | after all closing a client for output buffer limit overcoming is a WARNING le... | antirez | 2012-01-24 | 1 | -1/+1 |
* | Client output buffer limits: configuration of parameters for the different cl... | antirez | 2012-01-24 | 1 | -0/+16 |
* | asyncCloseClientOnOutputBufferLimitReached() now ignores clients with REDIS_C... | antirez | 2012-01-24 | 1 | -7/+5 |
* | client buffer handling refactoring and optimization | antirez | 2012-01-23 | 1 | -23/+47 |
* | Implementation of the internals that make possible to terminate clients overc... | antirez | 2012-01-23 | 1 | -0/+96 |
* | Introduced three client limit classes: normal, slave, pubsub | antirez | 2012-01-17 | 1 | -0/+15 |
* | Track the length of the client pending output buffers (still to transfer) in ... | antirez | 2012-01-17 | 1 | -1/+28 |
* | On crash print information about the current client (if any), command vector,... | antirez | 2012-01-12 | 1 | -0/+6 |
* | Protections against protocol desyncs, leading to infinite query buffer growin... | antirez | 2011-12-31 | 1 | -6/+23 |
* | Fixed replication when multiple slaves are attaching at the same time. The ou... | antirez | 2011-12-30 | 1 | -0/+10 |
* | server.replstate -> server.repl_state | antirez | 2011-12-21 | 1 | -1/+1 |
* | Fixed memleak in CLIENT INFO, added simple test that will work as regression ... | antirez | 2011-12-19 | 1 | -1/+5 |
* | show initial querybuf bytes on querybuf overflow. | antirez | 2011-11-28 | 1 | -2/+5 |
* | log client protocol errors for log level >= verbose | antirez | 2011-11-25 | 1 | -0/+6 |
* | minor refactoring to networking.c adding a separated function to get a string... | antirez | 2011-11-24 | 1 | -8/+16 |
* | last executed command in CLIENT LIST output. | antirez | 2011-11-24 | 1 | -3/+4 |
* | new counter in INFO output: rejected_connections with number of dropped conne... | antirez | 2011-11-23 | 1 | -0/+1 |
* | Fixed bug in getClientInfoString() that was not rendering the N (no flags) sp... | antirez | 2011-11-21 | 1 | -1/+1 |
* | Close client connection and log the event when the client input buffer reache... | antirez | 2011-11-21 | 1 | -0/+7 |
* | show active events in client file descriptor in CLIENT LIST. | antirez | 2011-11-21 | 1 | -3/+11 |
* | added output list and buffer length, query buffer size, to CLIENT LIST output. | antirez | 2011-11-21 | 1 | -2/+5 |
* | code generating the CLIENT LIST output refactored to have a function that is ... | antirez | 2011-11-21 | 1 | -28/+38 |
* | useless double if removed. | antirez | 2011-11-08 | 1 | -4/+3 |
* | yet another #if REDIS_MBULK_BIG_ARG removed. | antirez | 2011-11-08 | 1 | -2/+0 |
* | Multi bulk optimization for creating big objects without copying data is no l... | antirez | 2011-11-08 | 1 | -8/+0 |
* | A comment moved a few lines for clarity. | antirez | 2011-11-04 | 1 | -1/+1 |
* | Added a define to set the size threshold to enable the multi bulk parsing big... | antirez | 2011-11-04 | 1 | -8/+13 |