summaryrefslogtreecommitdiff
path: root/src/redis.c
Commit message (Expand)AuthorAgeFilesLines
* Allow AUTH / PING when disconnected from slave and serve-stale-data is no.antirez2013-09-171-2/+2
* Only run the fast active expire cycle if master & enabled.antirez2013-08-271-2/+4
* Opening TCP listening ports refactored into a function.antirez2013-08-221-38/+58
* Print error message when can't bind * on any address.antirez2013-08-221-3/+5
* Fix for issue #1214 simplified.antirez2013-08-211-14/+12
* fixed initServer fail while having no IPv6 nor IPv4Allan2013-08-211-1/+1
* fixed initServer failed if no IPV4 or no IPV6Allan2013-08-211-4/+11
* fixed bug issue of #1213Allan2013-08-211-3/+6
* Add per-db average TTL information in INFO output.antirez2013-08-061-4/+29
* activeExpireCycle(): fix about fast cycle early start.antirez2013-08-061-1/+1
* Some activeExpireCycle() refactoring.antirez2013-08-061-19/+26
* Remove dead code and fix comments for new expire code.antirez2013-08-061-56/+10
* Darft #2 for key collection algo: more improvements.antirez2013-08-061-2/+14
* Draft #1 of a new expired keys collection algorithm.antirez2013-08-061-19/+97
* Redis 2.7.101 (2.8 Release Candidate 1).2.8.0-rc1antirez2013-07-181-1/+1
* Chunked loading of RDB to prevent redis from stalling reading very large keys.yoav2013-07-161-0/+1
* Use the environment locale for strcoll() collation.antirez2013-07-121-0/+2
* All IP string repr buffers are now REDIS_IP_STR_LEN bytes.antirez2013-07-111-1/+1
* IPv6: bind IPv4 and IPv6 interfaces by default.antirez2013-07-111-1/+12
* Fix old anetPeerToString() API call in replication.cantirez2013-07-111-2/+0
* Cleanup main() and BACKTRACE mistaken pulled while rebasing.Geoff Garside2013-07-111-0/+2
* Fix calls to anetPeerToString() missing buffer size.Geoff Garside2013-07-111-1/+1
* Update calls to anetPeerToString to include ip_len.Geoff Garside2013-07-111-1/+1
* Remove cluster stuff from closeListeningSockets() for 2.8.antirez2013-07-081-2/+0
* Binding multiple IPs done properly with multiple sockets.antirez2013-07-081-17/+54
* Ability to bind multiple addresses.antirez2013-07-081-3/+3
* getAbsolutePath() moved into utils.cantirez2013-07-021-52/+0
* CONFIG SET maxclients.antirez2013-07-011-1/+1
* Allow SHUTDOWN in loading state.antirez2013-06-271-1/+1
* Move Replication Script Cache initialization in safer place.antirez2013-06-261-0/+1
* Use the RSC to replicate EVALSHA unmodified.antirez2013-06-261-2/+2
* Replication of scripts as EVALSHA: sha1 caching implemented.antirez2013-06-261-0/+12
* New API to force propagation.antirez2013-06-261-4/+28
* PUBSUB command implemented.antirez2013-06-261-0/+1
* don't assume time_t == longYAMAMOTO Takashi2013-06-261-22/+22
* New INFO field "min_slaves_good_slaves".antirez2013-05-311-0/+11
* min-replicas-to-write: only deny write commands.antirez2013-05-301-1/+3
* min-slaves-to-write: don't accept writes with less than N replicas.antirez2013-05-301-0/+15
* repl_offset field in INFO replication is now just offset.antirez2013-05-291-1/+1
* Slaves list in INFO output: lag added, format changed.antirez2013-05-291-2/+8
* Accept REPLCONF in any state.antirez2013-05-281-2/+3
* Don't ACK the master after every command.antirez2013-05-271-9/+0
* Replication: send REPLCONF ACK to master.antirez2013-05-271-2/+12
* Added a define for most configuration defaults.antirez2013-05-151-29/+29
* CONFIG REWRITE: support for client-output-buffer-limit.antirez2013-05-151-9/+4
* CONFIG REWRITE: Initial support code and design.antirez2013-05-151-2/+2
* Obtain absoute path of configuration file, expose it in INFO.antirez2013-05-151-2/+58
* Config option to turn AOF rewrite incremental fsync on/off.antirez2013-04-241-0/+1
* More explicit panic message on out of memory.antirez2013-04-191-1/+1
* Throttle BGSAVE attempt on saving error.antirez2013-04-021-2/+11