| Commit message (Expand) | Author | Age | Files | Lines |
* | split the client into two pieces -- the normal client with no logging, and a ...logging | Andy McCurdy | 2011-01-10 | 1 | -1/+2 |
* | Merge branch 'master' of https://github.com/wcmaier/redis-py into logging | Andy McCurdy | 2011-01-10 | 1 | -0/+54 |
|\ |
|
| * | log commands sent to the server | Will Maier | 2011-01-06 | 1 | -0/+54 |
* | | fixes #76 where ZREVRANK was using the wrong response callback | Andy McCurdy | 2010-12-21 | 1 | -0/+1 |
|/ |
|
* | Client now compatible with 2.2.0 commands. (SLAVEOF, CONFIG GET, CONFIG SET, ... | Andy McCurdy | 2010-12-20 | 1 | -1/+50 |
* | Adds the ability to get multiple external keys in a sort. | Jacob Kaplan-Moss | 2010-10-20 | 1 | -0/+8 |
* | tests for linsert, lpushx, and rpushx | Andy McCurdy | 2010-10-07 | 1 | -0/+42 |
* | Add some tests for WATCH | Craig Hawco | 2010-09-03 | 1 | -0/+19 |
* | New command: zcount | Konstantin Merenkov | 2010-08-17 | 1 | -0/+11 |
* | Small change to pubsub, hopefully fixing #49, or at least making it a little ... | Andy McCurdy | 2010-06-24 | 1 | -14/+21 |
* | changed return type of listen() -- it's now a dictionary with the following k... | Andy McCurdy | 2010-06-22 | 1 | -1/+3 |
* | added ZREMRANGEBYRANK command | Andy McCurdy | 2010-06-15 | 1 | -0/+13 |
* | BLPOP / BRPOP return tuple instead of a list, as it makes more sense | Konstantin Merenkov | 2010-06-02 | 1 | -10/+10 |
* | blpop / brpop can accept string as key | Konstantin Merenkov | 2010-06-02 | 1 | -0/+4 |
* | Added HSETNX command and tests | sebleier | 2010-06-02 | 1 | -2/+10 |
* | renamed zinter/zunion to zinterstore/zunionstore to stay consistent with Redis. | Andy McCurdy | 2010-05-23 | 1 | -8/+12 |
* | added missing EXPIREAT and SETEX commands | Andy McCurdy | 2010-05-10 | 1 | -12/+22 |
* | Fixed test_hincrby | Konstantin Merenkov | 2010-05-09 | 1 | -2/+1 |
* | values with scores of 0 were previously failing due to the way the callback c... | Andy McCurdy | 2010-05-03 | 1 | -2/+5 |
* | added support for zinter and zunion | Andy McCurdy | 2010-04-28 | 1 | -0/+54 |
* | added pubsub tests | Andy McCurdy | 2010-04-27 | 1 | -1/+50 |
* | added support for APPEND and SUBSTR commands | Andy McCurdy | 2010-04-19 | 1 | -0/+25 |
* | Always return a set object from set-based commands. Thanks Adam Charnock for... | Andy McCurdy | 2010-04-19 | 1 | -0/+2 |
* | HGETALL returns empty dict instead of None when there's no key in redis | Konstantin Merenkov | 2010-04-17 | 1 | -1/+1 |
* | HMGET + tests | Konstantin Merenkov | 2010-04-17 | 1 | -0/+11 |
* | Updated tests to work with redis logic that [] means there's no key | Konstantin Merenkov | 2010-04-13 | 1 | -11/+11 |
* | HMSET support | Konstantin Merenkov | 2010-04-13 | 1 | -0/+7 |
* | Move towards binary-safeness of keys and values. | Konstantin Merenkov | 2010-04-01 | 1 | -94/+129 |
* | * fix for #21, make only the "db" argument of select() required. If host and... | Andy McCurdy | 2010-03-26 | 1 | -1/+21 |
* | HEXISTS and HLEN implementations | Andy McCurdy | 2010-03-18 | 1 | -0/+27 |
* | fix for #18 -- i had copy/pasted some code from another function and forgot t... | Andy McCurdy | 2010-03-16 | 1 | -1/+1 |
* | HKEYS HVALS and HGETALL implemented | Andy McCurdy | 2010-03-16 | 1 | -0/+45 |
* | HDEL implemented | Andy McCurdy | 2010-03-15 | 1 | -4/+19 |
* | added ZRANK and ZREVRANK commands. | Andy McCurdy | 2010-03-15 | 1 | -1/+26 |
* | fixed #15 where zscore previously failed for members of a sorted set that did... | Andy McCurdy | 2010-03-11 | 1 | -12/+14 |
* | HSET now returns 1 if it added a new field to the hash, otherwise 0. | Andy McCurdy | 2010-03-10 | 1 | -1/+19 |
* | HSET now always returned True, which also fixed part of the test | Andy McCurdy | 2010-03-10 | 1 | -3/+2 |
* | added HGET/HSET commands | Andy McCurdy | 2010-03-10 | 1 | -0/+22 |
* | adding support for the new lpush/rpush returning the list length | Gustavo Picon | 2010-03-04 | 1 | -3/+9 |
* | fixed a comment | andymccurdy | 2010-02-19 | 1 | -2/+2 |
* | zrange/zrevrange/zrangebyscore should always return None if the key is insval... | andymccurdy | 2010-02-19 | 1 | -0/+8 |
* | should have beest testing lpop, not pop, which is deprecated | andymccurdy | 2010-02-18 | 1 | -7/+7 |
* | Redis.pop() is deprecated like Redis.push(). | andymccurdy | 2010-02-17 | 1 | -1/+74 |
* | - connection objects now store authentication credentials so that reconnect w... | andymccurdy | 2010-02-16 | 1 | -1/+1 |
* | new client passes all command tests, still need tests for connection pool and... | andymccurdy | 2010-02-15 | 1 | -0/+637 |