| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | [cosmetic] stupid 80 characters | Andy McCurdy | 2010-04-01 | 1 | -3/+6 |
* | Handling that socket.error's args is either (errno, "msg") or "msg" | Konstantin Merenkov | 2010-04-02 | 1 | -2/+6 |
* | added support for BGREWRITEAOF | Andy McCurdy | 2010-04-01 | 1 | -0/+7 |
* | Pipeines can not optionally be transactions (wrapped in MULTI/EXEC) or not by... | Andy McCurdy | 2010-03-31 | 1 | -18/+46 |
* | Not consuming responses for subscribe commands. | Konstantin Merenkov | 2010-04-01 | 1 | -4/+2 |
* | [cosmetic] a bit of formating + fixed a typo | Konstantin Merenkov | 2010-04-01 | 1 | -4/+4 |
* | [cosmetic] removed a nearly-dupe comment from _execute_command | Konstantin Merenkov | 2010-04-01 | 1 | -2/+1 |
* | Move towards binary-safeness of keys and values. | Konstantin Merenkov | 2010-04-01 | 1 | -126/+119 |
* | [cosmetic] whitespaces cleanup | Konstantin Merenkov | 2010-04-01 | 1 | -169/+172 |
* | Prevent crash when using pipelines (added self.subscribed to __init__) | Konstantin Merenkov | 2010-03-31 | 1 | -0/+1 |
* | Yield tuple (type, channel, message) from listen() instead of dictionary | Konstantin Merenkov | 2010-03-31 | 1 | -3/+3 |
* | added support for subscribe, unsubscribe, publish. tests incoming. pattern is: | Andy McCurdy | 2010-03-30 | 1 | -2/+46 |
* | * fix for #21, make only the "db" argument of select() required. If host and... | Andy McCurdy | 2010-03-26 | 1 | -4/+23 |
* | HEXISTS and HLEN implementations | Andy McCurdy | 2010-03-18 | 1 | -12/+26 |
* | 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/+16 |
* | HDEL implemented | Andy McCurdy | 2010-03-15 | 1 | -2/+6 |
* | added ZRANK and ZREVRANK commands. | Andy McCurdy | 2010-03-15 | 1 | -2/+17 |
* | no reason to join the names here -- just let the format_inline do it, that wa... | Andy McCurdy | 2010-03-12 | 1 | -1/+1 |
* | Fixed a bug with pipeline execution of AUTH and SELECT commands. These faile... | Andy McCurdy | 2010-03-12 | 1 | -2/+2 |
* | Flushed out the connection manager object a bit more. | Andy McCurdy | 2010-03-12 | 1 | -8/+22 |
* | fixed #15 where zscore previously failed for members of a sorted set that did... | Andy McCurdy | 2010-03-11 | 1 | -1/+2 |
* | all commands being executed in a pipeline are now executing with a single soc... | Andy McCurdy | 2010-03-11 | 1 | -2/+3 |
* | Pipeline objects are now executed atomically via the MULTI and EXEC commands | Andy McCurdy | 2010-03-10 | 1 | -13/+57 |
* | HSET now returns 1 if it added a new field to the hash, otherwise 0. | Andy McCurdy | 2010-03-10 | 1 | -2/+4 |
* | HSET now always returned True, which also fixed part of the test | Andy McCurdy | 2010-03-10 | 1 | -0/+1 |
* | added HGET/HSET commands | Andy McCurdy | 2010-03-10 | 1 | -1/+10 |
* | the Redis class is now a thread local. This means you can safely pass it aro... | Andy McCurdy | 2010-03-05 | 1 | -1/+1 |
* | Merge remote branch 'tabo/master' | Andy McCurdy | 2010-03-04 | 1 | -2/+6 |
|\ |
|
| * | adding support for the new lpush/rpush returning the list length | Gustavo Picon | 2010-03-04 | 1 | -2/+6 |
* | | Merge branch 'master' of github.com:andymccurdy/redis-py | Andy McCurdy | 2010-03-04 | 1 | -10/+11 |
|\ \
| |/ |
|
| * | docstring typos | Zak Johnson | 2010-03-03 | 1 | -9/+9 |
| * | Add Redis.__contains__ to support "'key' in redis" | Zak Johnson | 2010-03-03 | 1 | -1/+2 |
* | | complete analness about the : | Andy McCurdy | 2010-03-04 | 1 | -10/+10 |
|/ |
|
* | zrange/zrevrange/zrangebyscore should always return None if the key is insval... | andymccurdy | 2010-02-19 | 1 | -1/+1 |
* | key lists passed to blpop and brpop are not unmodified. thanks to Patrick Sh... | andymccurdy | 2010-02-18 | 1 | -0/+2 |
* | removing the decode() hook from earlier. it's really more effective to serial... | andymccurdy | 2010-02-17 | 1 | -6/+0 |
* | Redis.pop() is deprecated like Redis.push(). | andymccurdy | 2010-02-17 | 1 | -0/+3 |
* | fixed a pipeline bug where a connection that had timed out and needed to re-a... | andymccurdy | 2010-02-16 | 1 | -6/+10 |
* | added accessors for host/port/db information off the current connection | andymccurdy | 2010-02-16 | 1 | -0/+13 |
* | - added ability for subclasses of Redis to provide their own decode logic if ... | andymccurdy | 2010-02-16 | 1 | -0/+6 |
* | - connection objects now store authentication credentials so that reconnect w... | andymccurdy | 2010-02-16 | 1 | -14/+31 |
* | new client passes all command tests, still need tests for connection pool and... | andymccurdy | 2010-02-15 | 1 | -0/+885 |