summaryrefslogtreecommitdiff
path: root/src/networking.c
Commit message (Expand)AuthorAgeFilesLines
* CLIENT LIST speedup via peerid caching + smart allocation.antirez2014-04-281-19/+31
* Use sdscatfmt() in getClientInfoString() to make it faster.antirez2014-04-281-9/+9
* Process events with processEventsWhileBlocked() when blocked.antirez2014-04-281-0/+23
* Accept multiple clients per iteration.antirez2014-04-281-15/+23
* AE_ERR -> ANET_ERR in acceptUnixHandler().antirez2014-04-281-1/+1
* Missing return REDIS_ERR added to processMultibulkBuffer().antirez2014-04-231-1/+3
* Fix return value check for anetTcpAcceptMatt Stancliff2014-03-111-1/+1
* CLIENT PAUSE and related API implemented.antirez2014-02-041-0/+56
* Don't log MONITOR clients as disconnecting slaves.antirez2014-01-251-1/+1
* Cluster: support to read from slave nodes.antirez2014-01-141-0/+1
* Log disconnection with slave only when ip:port is available.antirez2013-12-251-4/+4
* Slave disconnection is an event worth logging.antirez2013-12-221-0/+10
* Log when a slave lose the connection with its master.antirez2013-12-211-9/+10
* Merge pull request #1451 from yossigo/unbalanced-quotes-fixSalvatore Sanfilippo2013-12-111-0/+5
|\
| * Return proper error on requests with an unbalanced number of quotes.Yossi Gottlieb2013-12-081-0/+5
* | Slaves heartbeat while loading RDB files.antirez2013-12-091-0/+6
* | Handle inline requested terminated with just \n.antirez2013-12-091-1/+8
|/
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-1/+1
* WAIT command: synchronous replication for Redis.antirez2013-12-041-0/+1
* BLPOP blocking code refactored to be generic & reusable.antirez2013-12-031-3/+5
* Removed old comments and dead code from freeClient().antirez2013-12-031-12/+14
* Grammar fix in freeClient().antirez2013-12-031-1/+1
* Replication: fix master timeout.antirez2013-10-041-1/+7
* Fix an hypothetical issue in processMultibulkBuffer().antirez2013-08-271-1/+5
* Don't over-allocate the sds string for large bulk requests.antirez2013-08-271-2/+2
* Use precomptued objects for bulk and mbulk prefixes.antirez2013-08-121-2/+9
* Replication: better way to send a preamble before RDB payload.antirez2013-08-121-2/+4
* sdsrange() does not need to return a value.antirez2013-07-241-5/+5
* Inline protocol improved to accept quoted strings.antirez2013-07-241-2/+4
* getStringObjectSdsUsedMemory() function added.antirez2013-07-231-19/+17
* Fix setDeferredMultiBulkLength() c->reply_bytes handling with EMBSTRantirez2013-07-221-1/+4
* Fixed a possible bug in client->reply_bytes computation.antirez2013-07-221-0/+1
* Introduction of a new string encoding: EMBSTRantirez2013-07-221-9/+21
* addReplyDouble(): format infinite in a libc agnostic way.antirez2013-07-171-3/+10
* getClientPeerId() refactored into two functions.antirez2013-07-091-4/+12
* getClientPeerId() now reports errors.antirez2013-07-091-13/+13
* getClientPeerID introduced.antirez2013-07-091-7/+34
* All IP string repr buffers are now REDIS_IP_STR_LEN bytes.antirez2013-07-091-3/+2
* Mark places that might want changing for IPv6.Geoff Garside2013-07-081-0/+1
* Expand ip char buffers which are too small for v6.Geoff Garside2013-07-081-2/+3
* Mark ip string buffers which could be reduced.Geoff Garside2013-07-081-1/+1
* Update anetTcpAccept & anetPeerToString calls.Geoff Garside2013-07-081-3/+3
* min-slaves-to-write: don't accept writes with less than N replicas.antirez2013-05-301-0/+1
* Replication: send REPLCONF ACK to master.antirez2013-05-271-1/+2
* REPLCONF ACK command.antirez2013-05-271-0/+2
* Fixed a bug in no queueing replies to master.antirez2013-05-251-1/+2
* Replication: don't even queue replies to master commands.antirez2013-05-241-17/+7
* Top comment for prepareClientToWrite() clarified.antirez2013-05-241-2/+2
* 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