~axino/redis/+git/trunk:zunion

Last commit made on 2014-06-06
Get this branch:
git clone -b zunion https://git.launchpad.net/~axino/redis/+git/trunk

Branch merges

Branch information

Name:
zunion
Repository:
lp:~axino/redis/+git/trunk

Recent commits

8b9d9d8... by antirez <email address hidden>

Remove useless var and check in zunionInterGenericCommand().

932cc3e... by antirez <email address hidden>

ZUNIONSTORE reimplemented for speed.

The user @kjmph provided excellent ideas to improve speed of ZUNIONSTORE
(in certain cases by many order of magnitude), together with an
implementation of the ideas.

While the ideas were sounding, the implementation could be improved both
in terms of speed and clearness, so that's my attempt at reimplementing
the speedup proposed, trying to improve by directly using just a
dictionary with an embedded score inside, and reusing the single-pass
aggregate + order-later approach.

Note that you can't apply this commit without applying the previous
commit in this branch that adds a double in the dictEntry value union.

Issue #1786.

fe85d06... by antirez <email address hidden>

Add double field in dict.c entry value union.

a240322... by Salvatore Sanfilippo <email address hidden>

Merge pull request #1772 from andygrunwald/typo-avarege-average

Fixed typo in word avarege in result message of --intrinsic-latency analyzer

113be48... by Salvatore Sanfilippo <email address hidden>

Merge pull request #1780 from badboy/patch-8

Small typo fixed

e8ebd7d... by Salvatore Sanfilippo <email address hidden>

Merge pull request #1789 from yoav-steinberg/fix_eval_in_tests

Fix eval usage in tests to conform with eval semantics

1e221d1... by Salvatore Sanfilippo <email address hidden>

Merge pull request #1788 from zionwu/unstable

fix issue 1787

14fb0ac... by antirez <email address hidden>

Don't process min-slaves-to-write for slaves.

Replication is totally broken when a slave has this option, since it
stops accepting updates from masters.

This fixes issue #1434.

134fd9e... by antirez <email address hidden>

Tests for min-slaves-* feature.

3758f27... by antirez <email address hidden>

Fixed dbuf variable scope in luaRedisGenericCommand().

I'm not sure if while the visibility is the inner block, the fact we
point to 'dbuf' is a problem or not, probably the stack var isx
guaranteed to live until the function returns. However obvious code is
better anyway.