summaryrefslogtreecommitdiff
path: root/src/networking.c
Commit message (Expand)AuthorAgeFilesLines
* API to lookup commands with their original name.antirez2013-03-061-2/+2
* Cluster: ASKING command fixed, state was not retained.antirez2013-02-201-2/+6
* PSYNC: work in progress, preview #2, rebased to unstable.antirez2013-02-121-18/+50
* Set SO_KEEPALIVE on client sockets if configured to do so.antirez2013-02-081-0/+2
* TCP_NODELAY after SYNC: changes to the implementation.antirez2013-02-051-1/+1
* Fix decrRefCount() prototype from void to robj pointer.antirez2013-01-281-3/+3
* Additionally two typos fixed thanks to @jodalantirez2013-01-191-1/+1
* Fixed many typos.guiquanz2013-01-191-4/+4
* Fix an error reply for CLIENT commandbitterb2013-01-191-1/+1
* Typo fixed, ASCI -> ASCII.antirez2013-01-151-1/+1
* CLIENT GETNAME and CLIENT SETNAME introduced.antirez2013-01-151-2/+39
* Better error reporting when fd event creation fails.antirez2013-01-031-1/+3
* Memory leak fixed: release client's bpop->keys dictionary.antirez2012-12-031-0/+1
* Blocking POP: use a dictionary to store keys clinet side.antirez2012-12-021-2/+1
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* fix typo in comments (redis.c, networking.c)Yecheng Fu2012-11-011-6/+6
* Unix socket clients properly displayed in MONITOR and CLIENT LIST.antirez2012-11-011-6/+10
* REPLCONF internal command introduced.antirez2012-06-271-0/+1
* Fix c->reply_bytes computation in setDeferredMultiBulkLength()antirez2012-06-151-0/+4
* New client info field added to CLIENT LIST output: multi, containing the leng...antirez2012-04-071-1/+2
* Fixed typo in comment: "te" -> "the".antirez2012-03-291-1/+1
* Fix for slaves chains. Force resync of slaves (simply disconnecting them) wh...antirez2012-03-291-14/+15
* use server.unixtime instead of time(NULL) where possible (cluster.c not check...Premysl Hruby2012-03-271-7/+6
* Reclaim space from the client querybuf if needed.antirez2012-03-141-0/+2
* Process async client checks like client timeouts and BLPOP timeouts increment...antirez2012-03-131-28/+0
* Added a qbuf-free field to CLIENT LIST output.antirez2012-03-131-1/+2
* Client creation time in redisClient structure. New age field in CLIENT LIST o...antirez2012-03-131-2/+3
* c->bufpos initialization moved for aesthetics.antirez2012-03-131-1/+1
* anetPeerToString() automatically populates ip/port with something that may be...antirez2012-03-071-5/+1
* Return ASAP from checkClientOutputBufferLimits() if c->reply_bytes is zero.antirez2012-02-161-1/+1
* Fixes to c->reply_bytes computation, and debug messages to closely study the ...antirez2012-02-071-8/+22
* Precision of getClientOutputBufferMemoryUsage() greatily improved, see issue ...antirez2012-02-071-8/+17
* freeMemoryIfNeeded() minor refactoringantirez2012-02-061-0/+21
* This fixes issue #327, is a very complex fix (unfortunately), details:antirez2012-02-041-3/+8
* Use less memory when emitting the protocol, by using more shared objects for ...antirez2012-02-041-0/+12
* Fixed typo in getClientLimitClassByName()antirez2012-01-251-1/+1
* lenght -> lengthantirez2012-01-241-1/+1
* after all closing a client for output buffer limit overcoming is a WARNING le...antirez2012-01-241-1/+1
* Client output buffer limits: configuration of parameters for the different cl...antirez2012-01-241-0/+16
* asyncCloseClientOnOutputBufferLimitReached() now ignores clients with REDIS_C...antirez2012-01-241-7/+5
* client buffer handling refactoring and optimizationantirez2012-01-231-23/+47
* Implementation of the internals that make possible to terminate clients overc...antirez2012-01-231-0/+96
* Introduced three client limit classes: normal, slave, pubsubantirez2012-01-171-0/+15
* Track the length of the client pending output buffers (still to transfer) in ...antirez2012-01-171-1/+28
* On crash print information about the current client (if any), command vector,...antirez2012-01-121-0/+6
* Protections against protocol desyncs, leading to infinite query buffer growin...antirez2011-12-311-6/+23
* Fixed replication when multiple slaves are attaching at the same time. The ou...antirez2011-12-301-0/+10
* server.replstate -> server.repl_stateantirez2011-12-211-1/+1
* Fixed memleak in CLIENT INFO, added simple test that will work as regression ...antirez2011-12-191-1/+5
* show initial querybuf bytes on querybuf overflow.antirez2011-11-281-2/+5