summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* RDB AOF preamble: test it in the aofrw unit.aofrdbantirez2016-08-241-49/+52
* Document RDB preamble in AOF rewrites in redis.conf.antirez2016-08-241-0/+14
* RDB AOF preamble: WIP 4 (Mixed RDB/AOF loading).antirez2016-08-112-6/+33
* RDB AOF preamble: WIP 3 (RDB loading refactoring).antirez2016-08-111-29/+38
* RDB AOF preamble: WIP 2.antirez2016-08-095-28/+37
* RDB AOF preamble: WIP 1.antirez2016-08-094-35/+72
* Merge pull request #3340 from rojingeorge/unstableSalvatore Sanfilippo2016-08-051-0/+5
|\
| * Merge remote-tracking branch 'refs/remotes/antirez/unstable' into unstableRojin George2016-06-303-1/+46
| |\
| * | Display the nodes summary once the cluster is established using redis-trib.rbrojingeorge2016-06-231-0/+5
| * | Merge remote-tracking branch 'refs/remotes/antirez/unstable' into unstablerojingeorge2016-06-2350-420/+2668
| |\ \
* | \ \ Merge pull request #3429 from guoxiao/warningSalvatore Sanfilippo2016-08-041-1/+1
|\ \ \ \
| * | | | Use the standard predefined identifier __func__ (since C99)Guo Xiao2016-08-041-1/+1
|/ / / /
* | | | Modules: basic call/reply tests in test module.antirez2016-08-031-0/+71
* | | | Modules: handle NULL replies more gracefully.antirez2016-08-031-0/+6
* | | | Security: Cross Protocol Scripting protection.antirez2016-08-033-2/+27
* | | | Fix comment over 80 cols.antirez2016-08-031-1/+1
* | | | Modules: initial draft for a testing module.antirez2016-08-033-93/+235
* | | | Modules: StringAppendBuffer() and ability to retain strings.antirez2016-08-023-5/+91
* | | | Fix a bug to delay bgsave while AOF rewrite in progress for replicationQu Chen2016-08-021-1/+1
* | | | Remove extra "-" from ASCII horizontal bar in comment.antirez2016-08-022-2/+2
* | | | Update linenoise to fix insecure redis-cli history file creation.antirez2016-07-291-1/+6
* | | | Changelog format modified to be less verbose.antirez2016-07-281-1/+5
* | | | Ability of slave to announce arbitrary ip/port to master.antirez2016-07-276-17/+129
* | | | Multiple GEORADIUS bugs fixed.antirez2016-07-276-21/+199
* | | | Replication: when possible start RDB saving ASAP.antirez2016-07-221-2/+8
* | | | Sentinel: new test unit 07 that tests master down conditions.antirez2016-07-221-0/+68
* | | | Sentinel: check Slave INFO state more often when disconnected.antirez2016-07-222-3/+10
* | | | Avoid simultaneous RDB and AOF child process.antirez2016-07-214-8/+51
* | | | Replication: start BGSAVE for replication always in replicationCron().antirez2016-07-211-12/+15
* | | | Fix maxmemory shared integer check bug introduced with LFU.antirez2016-07-211-1/+1
* | | | Volatile-ttl eviction policy implemented in terms of the pool.antirez2016-07-202-48/+25
* | | | test-lru.rb: support for testing volatile-ttl policy.antirez2016-07-201-14/+49
* | | | LFU: make counter log factor and decay time configurable.lfuantirez2016-07-205-14/+95
* | | | LFU: Use the LRU pool for the LFU algorithm.antirez2016-07-181-36/+25
* | | | LFU: Fix bugs in frequency decay code.antirez2016-07-181-2/+2
* | | | LFU: Initial naive eviction cycle.antirez2016-07-183-4/+49
* | | | redis-cli LRU test mode: randomize value of key when setting.antirez2016-07-181-1/+4
* | | | redis-cli LRU test mode: remove newline from key names.antirez2016-07-181-1/+1
* | | | LFU: Redis object level implementation.antirez2016-07-155-15/+142
* | | | LFU simulator: remove dead code.antirez2016-07-141-5/+0
* | | | LRU simulator: fix new entry creation decr time.antirez2016-07-141-1/+1
* | | | LRU simulator: fix new entry creation.antirez2016-07-141-2/+2
* | | | LFU: Simulation of the algorithm planned for Redis.antirez2016-07-141-0/+163
* | | | LRU: Make cross-database choices for eviction.antirez2016-07-133-110/+161
* | | | LRU: cache SDS strings in the eviction pool.antirez2016-07-121-13/+29
* | | | Move the struct evictionPoolEntry() into only file using it.antirez2016-07-122-12/+22
* | | | Move prototype of evictionPoolAlloc() in server.h.antirez2016-07-122-2/+3
* | | | LRU: use C99 variable len stack array in evictionPoolPopulate().antirez2016-07-121-11/+1
* | | | redis-benchmark: new option to show server errors on stdout.antirez2016-07-121-1/+17
* | | | Remove useless memmove() from freeMemoryIfNeeded().antirez2016-07-111-7/+2