summaryrefslogtreecommitdiff
path: root/src/redis.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Extended SET command implemented (issue #931).antirez2013-03-281-1/+1
* DEBUG set-active-expire added.antirez2013-03-281-1/+3
* Flag PUBLISH as read-only in the command table.antirez2013-03-261-1/+1
* Allow SELECT while loading the DB.antirez2013-03-261-1/+1
* Replication: master_link_down_since_seconds initial value should be huge.antirez2013-03-131-1/+1
* Abort when opening the RDB file results in an error other than ENOENT.Damian Janowski2013-03-131-1/+1
* Set default for stop_writes_on_bgsave_err in initServerConfig().antirez2013-03-121-1/+1
* activeExpireCycle() smarter with many DBs and under expire pressure.antirez2013-03-111-4/+20
* In databasesCron() never test more DBs than we have.antirez2013-03-111-3/+11
* Make comment name match var name in activeExpireCycle().antirez2013-03-111-1/+1
* Optimize inner loop of activeExpireCycle() for no-expires case.antirez2013-03-111-3/+7
* REDIS_DBCRON_DBS_PER_SEC -> REDIS_DBCRON_DBS_PER_CALLantirez2013-03-111-4/+4
* activeExpireCycle(): process only a small number of DBs per iteration.antirez2013-03-111-4/+13
* Use unsigned integers for DB ids, for defined wrap-to-zero.antirez2013-03-111-3/+3