| 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 | -1586/+0 |
* | Merge branch 'master' of https://github.com/wcmaier/redis-py into logging | Andy McCurdy | 2011-01-10 | 1 | -7/+47 |
|\ |
|
| * | Guard all log statements with log_enabled(). | Will Maier | 2011-01-07 | 1 | -5/+11 |
| * | shield logging with isEnabledFor. | Will Maier | 2011-01-07 | 1 | -6/+8 |
| * | log connects/disconnects | Will Maier | 2011-01-06 | 1 | -0/+2 |
| * | log commands sent to the server | Will Maier | 2011-01-06 | 1 | -0/+7 |
| * | encode commands at the last possible moment to make logging easier later | Will Maier | 2011-01-06 | 1 | -7/+11 |
| * | add repr_command(), a function to consistently represent commands | Will Maier | 2011-01-06 | 1 | -0/+8 |
| * | add logging boilerplate | Will Maier | 2011-01-06 | 1 | -0/+11 |
* | | Merge branch 'master' of https://github.com/guidog/redis-py into guidog-master | Andy McCurdy | 2010-12-31 | 1 | -1/+1 |
|\ \ |
|
| * | | Fixed issue 89. | guidog | 2010-12-23 | 1 | -1/+1 |
* | | | fix for #91 and #92. errno import was being overwritten by the same local var... | Andy McCurdy | 2010-12-31 | 1 | -3/+3 |
|/ / |
|
* | | fixes #76 where ZREVRANK was using the wrong response callback | Andy McCurdy | 2010-12-21 | 1 | -2/+2 |
|/ |
|
* | Client now compatible with 2.2.0 commands. (SLAVEOF, CONFIG GET, CONFIG SET, ... | Andy McCurdy | 2010-12-20 | 1 | -5/+76 |
* | better error handing during socket writing. fixes #83 | Andy McCurdy | 2010-11-18 | 1 | -1/+5 |
* | socket_timeout works when connection initialization times out. | Konstantin Merenkov | 2010-11-02 | 1 | -1/+1 |
* | Adds the ability to get multiple external keys in a sort. | Jacob Kaplan-Moss | 2010-10-20 | 1 | -2/+11 |
* | adjusted comments to reflect proper error returns | Andy McCurdy | 2010-10-07 | 1 | -5/+7 |
* | Add support for LPUSHX, RPUSHX, LINSERT | JD Maturen | 2010-10-07 | 1 | -2/+19 |
* | timeout of None to the brpop/blpop is the same as timeout=0 | Andy McCurdy | 2010-09-29 | 1 | -0/+4 |
* | Use the correct number of parameters for the UNWATCH command. | Craig Hawco | 2010-09-03 | 1 | -2/+2 |
* | Add UNWATCH as well. | Craig Hawco | 2010-09-03 | 1 | -1/+10 |
* | Add WATCH command to redis-py | Craig Hawco | 2010-09-03 | 1 | -2/+14 |
* | slight optimization to hmset, mset, and msetnx for both clarity and speed | Andy McCurdy | 2010-08-19 | 1 | -3/+6 |
* | optimized execute_command thanks to github user Suor | Andy McCurdy | 2010-08-18 | 1 | -7/+4 |
* | added a shutdown command. fixes #58. no tests for this because it would be im... | Andy McCurdy | 2010-08-18 | 1 | -0/+11 |
* | functions that return sets should now work against older Redis server version... | Andy McCurdy | 2010-08-18 | 1 | -1/+1 |
* | New command: zcount | Konstantin Merenkov | 2010-08-17 | 1 | -0/+3 |
* | Small change to pubsub, hopefully fixing #49, or at least making it a little ... | Andy McCurdy | 2010-06-24 | 1 | -2/+7 |
* | changed return type of listen() -- it's now a dictionary with the following k... | Andy McCurdy | 2010-06-22 | 1 | -4/+14 |
* | add psubscribe and punsubscribe to subscription commands | twidi | 2010-06-22 | 1 | -1/+1 |
* | added context manager support to the Lock object so you can do "with redis.lo... | Andy McCurdy | 2010-06-15 | 1 | -16/+38 |
* | configurable sleep duration | Andy McCurdy | 2010-06-15 | 1 | -2/+5 |
* | added a Lock class that mimics the behavior of threading.Lock. | Andy McCurdy | 2010-06-15 | 1 | -0/+69 |
* | added ZREMRANGEBYRANK command | Andy McCurdy | 2010-06-15 | 1 | -2/+12 |
* | BLPOP / BRPOP return tuple instead of a list, as it makes more sense | Konstantin Merenkov | 2010-06-02 | 1 | -0/+1 |
* | blpop / brpop can accept string as key | Konstantin Merenkov | 2010-06-02 | 1 | -2/+8 |
* | Added HSETNX command and tests | sebleier | 2010-06-02 | 1 | -0/+7 |
* | renamed zinter/zunion to zinterstore/zunionstore to stay consistent with Redis. | Andy McCurdy | 2010-05-23 | 1 | -2/+14 |
* | added missing EXPIREAT and SETEX commands | Andy McCurdy | 2010-05-10 | 1 | -3/+20 |
* | values with scores of 0 were previously failing due to the way the callback c... | Andy McCurdy | 2010-05-03 | 1 | -3/+14 |
* | added support for zinter and zunion | Andy McCurdy | 2010-04-28 | 1 | -0/+32 |
* | added pubsub tests | Andy McCurdy | 2010-04-27 | 1 | -2/+24 |
* | docs and param name consistency cleanup | Andy McCurdy | 2010-04-27 | 1 | -3/+6 |
* | added support for APPEND and SUBSTR commands | Andy McCurdy | 2010-04-19 | 1 | -0/+15 |
* | Always return a set object from set-based commands. Thanks Adam Charnock for... | Andy McCurdy | 2010-04-19 | 1 | -3/+4 |
* | 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/+4 |
* | HMSET support | Konstantin Merenkov | 2010-04-13 | 1 | -1/+7 |
* | [issue 29] Redis instance doesn't use shared connection pool by default | Konstantin Merenkov | 2010-04-12 | 1 | -5/+4 |