~axino/redis/+git/trunk:current-client-fix

Last commit made on 2015-02-26
Get this branch:
git clone -b current-client-fix https://git.launchpad.net/~axino/redis/+git/trunk

Branch merges

Branch information

Name:
current-client-fix
Repository:
lp:~axino/redis/+git/trunk

Recent commits

c7ac181... by antirez <email address hidden>

server.current_client fix and minor refactoring.

Related to issue #2409.

832b0c7... by antirez <email address hidden>

Improvements to PR #2425

1. Remove useless "cs" initialization.
2. Add a "select" var to capture a condition checked multiple times.
3. Avoid duplication of the same if (!copy) conditional.
4. Don't increment dirty if copy is given (no deletion is performed),
   otherwise we propagate MIGRATE when not needed.

7fda935... by Tommy Wang <email address hidden>

Add last_dbid to migrateCachedSocket to avoid redundant SELECT

Avoid redundant SELECT calls when continuously migrating keys to
the same dbid within a target Redis instance.

cc0d339... by antirez <email address hidden>

utils/hashtable/rehashing.c test updated to use new API.

126462e... by Salvatore Sanfilippo <email address hidden>

Merge pull request #2405 from sisirkoppaka/unstable

rehashing.c: Fix compile error originating from SPOP rewrite

74354ce... by antirez <email address hidden>

Test: fixes a few tests after basic unit refactoring.

27c30b0... by antirez <email address hidden>

Cast sentlen to int before comparison wit bufpos.

This is safe since bufpos is small, inside the range of the local
client buffer.

954151f... by antirez <email address hidden>

Test: split basic unit into string, incr, keyspace units.

9454f7b... by Salvatore Sanfilippo <email address hidden>

Merge pull request #2050 from mattsta/bitops-no-overalloc

Bitops: Stop overallocating storage space on set

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

Merge pull request #2054 from mattsta/fix-set-sentinel-quorum

Sentinel: Add initial quorum bounds check