summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* No-sync: some info in the example redis.conf comments.nosyncantirez2015-02-131-0/+32
* No-sync: fixed missing conditional in syncCommand().antirez2015-02-131-2/+2
* No-sync: avoid master to be marked as PRE-PSYNC.antirez2015-02-131-0/+1
* Experimental no-sync replication mode.antirez2015-02-135-3/+64
* Merge pull request #2390 from sawaman/fix-typoSalvatore Sanfilippo2015-02-121-1/+1
|\
| * Unify to uppercase the headlineMasahiko Sawada2015-02-121-1/+1
* | Extend memory unit support in CONFIG SET.antirez2015-02-121-5/+5
* | Merge pull request #2357 from lamby/config-set-maxmemory-unitsSalvatore Sanfilippo2015-02-121-2/+3
|\ \
| * | Support "1G" etc. units in CONFIG SET maxmemoryChris Lamb2015-02-041-2/+3
* | | Better memtoll() error checking.antirez2015-02-121-5/+18
| |/ |/|
* | SPOP replication tests.antirez2015-02-111-0/+19
* | SPOP explicit tests for the three different code paths.antirez2015-02-111-0/+27
* | SPOP with count: fix replication for code path #3.antirez2015-02-111-2/+10
* | SPOP: reimplemented for speed and better distribution.antirez2015-02-115-301/+80
* | alsoPropagate: handle REDIS_CALL_PROPAGATE and AOF loading.antirez2015-02-112-5/+10
* | Change alsoPropagate() behavior to make it more usable.antirez2015-02-112-9/+24
* | SPOP with count: initial fixes to the implementation.antirez2015-02-113-42/+54
* | Separate latency monitoring of eviction loop and eviction DELs.antirez2015-02-113-2/+20
* | dict.c: reset emptylen when bucket is not empty.antirez2015-02-111-0/+1
* | dict.c Rehashing visualization code snippet added to utils.antirez2015-02-112-0/+145
* | redis-cli --stat: show LOAD when loading.antirez2015-02-111-0/+4
* | Remove optional single-key path from evictionPoolPopulate().antirez2015-02-111-6/+0
* | dict.c: add dictGetSomeKeys(), specialized for eviction.antirez2015-02-113-2/+95
* | dict.c: avoid code repetition in dictRehash().antirez2015-02-111-11/+6
* | dict.c/dictRehash: check again to updateSun He2015-02-111-0/+7
* | dict.c: don't try buckets that are empty for sure in dictGetRandomKey().antirez2015-02-111-1/+5
* | dict.c: dictGetRandomKeys() optimization for big->small table case.antirez2015-02-111-1/+8
* | dict.c: dictGetRandomKeys() visit pattern optimization.antirez2015-02-111-0/+4
* | dict.c: put a bound to max work dictRehash() call can do.antirez2015-02-111-2/+11
* | dict.c: prevent useless resize to same size.antirez2015-02-111-0/+3
* | Less blocking dictGetRandomKeys().antirez2015-02-111-23/+31
* | Faster memory efficiency test.antirez2015-02-101-1/+6
* | Added regression test for issue #2371.antirez2015-02-102-0/+25
* | HAVE_SYNC_FILE_RANGE should be protected by ifdef __linux__.antirez2015-02-101-0/+2
* | Merge pull request #2372 from mariano-perez-rodriguez/patch-2Salvatore Sanfilippo2015-02-101-4/+5
|\ \
| * | Fix for #2371Mariano Pérez Rodríguez2015-02-071-4/+5
* | | redis-cli --lru-test implemented (cache workload simulator).antirez2015-02-091-0/+102
* | | redis-cli: interactive reconnection for latency modes.antirez2015-02-081-9/+13
* | | redis-cli --latecy-dist reverted to gray scale.antirez2015-02-081-8/+10
* | | redis-cli --latency-dist now uses a color palette.antirez2015-02-071-8/+14
* | | redis-cli latency dist: add new top HL.antirez2015-02-071-0/+1
|/ /
* | Add missing latency-dest legend symbol.antirez2015-02-071-1/+1
* | Initial implementation of redis-cli --latency-dist.antirez2015-02-071-0/+153
* | Fix RDB corruption test after server behavior change.antirez2015-02-041-1/+1
* | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2015-02-041-1/+1
|\ \
| * | Suppress sign warning in sort.c.antirez2015-02-031-1/+1
* | | Replication: put server.master client creation into separated function.antirez2015-02-041-11/+18
|/ /
* | Hopefully better sort.c optimization comments.antirez2015-02-031-15/+9
* | Merge pull request #2346 from sunheehnus/sortSalvatore Sanfilippo2015-02-031-3/+30
|\ \
| * | sort.c: REDIS_LIST's dontsort optimizationSun He2015-02-021-3/+30