Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge branch 'andy' | Dan Colish | 2011-03-14 | 1 | -3/+3 | |
|\ | ||||||
| * | Merge remote branch 'richid/multi_watch' into richid | Andy McCurdy | 2011-03-14 | 1 | -3/+3 | |
| |\ | ||||||
| | * | Add support for multiple keys in a single WATCH call | Rich Schumacher | 2011-03-04 | 1 | -3/+3 | |
| | | | ||||||
* | | | Remove ternary operator to support Python 2.4 | Dan Colish | 2011-03-14 | 1 | -1/+4 | |
|/ / | ||||||
* | | Lock's now support timeouts that are floats. Fix for #113 | Andy McCurdy | 2011-03-14 | 1 | -4/+10 | |
| | | ||||||
* | | the actual order of the zrevrangebyscore parameters were switched, too, ↵ | Andy McCurdy | 2011-03-14 | 1 | -6/+6 | |
| | | | | | | | | which was the root of this problem | |||||
* | | Really compatible with the new info in redis 2.2 : ignore blank and comment ↵ | twidi | 2011-02-27 | 1 | -5/+6 | |
| | | | | | | | | lines | |||||
* | | parameters for zrevrangebyscore are `max` then `min`, and not `min` then `max` | twidi | 2011-02-27 | 1 | -1/+1 | |
|/ | ||||||
* | Merge remote branch 'bretthoerner/master' into bretthoerner | Andy McCurdy | 2011-02-09 | 1 | -2/+2 | |
|\ | ||||||
| * | Fix info() for new Redis INFO format (backwards compatible). | Brett Hoerner | 2011-01-24 | 1 | -2/+2 | |
| | | ||||||
* | | stylistic modes + tests for zrevrangebyscore | Andy McCurdy | 2011-02-09 | 1 | -8/+12 | |
| | | ||||||
* | | Merge remote branch 'jaybaird/master' into jaybaird | Andy McCurdy | 2011-02-09 | 1 | -1/+22 | |
|\ \ | ||||||
| * | | add zrevrangebyscore method to the zdis client | Jay Baird | 2011-01-14 | 1 | -1/+22 | |
| |/ | ||||||
* | | Integer replies may be of type long | Pieter Noordhuis | 2011-01-30 | 1 | -1/+1 | |
| | | ||||||
* | | Move Connection and ConnectionPool to different file | Pieter Noordhuis | 2011-01-30 | 1 | -157/+2 | |
| | | ||||||
* | | Move protocol parsing code to Connection class | Pieter Noordhuis | 2011-01-30 | 1 | -56/+55 | |
|/ | ||||||
* | 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 ↵ | Andy McCurdy | 2010-12-31 | 1 | -3/+3 | |
|/ | | | | variable name. | |||||
* | 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 | |
| | | | | GETBIT, SETBIT, BRPOPLPUSH, STRLEN, PERSIST, SETRANGE) | |||||
* | 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 ↵ | Andy McCurdy | 2010-08-18 | 1 | -0/+11 | |
| | | | | impossible to restart the redis instance being tested against. | |||||
* | functions that return sets should now work against older Redis server ↵ | Andy McCurdy | 2010-08-18 | 1 | -1/+1 | |
| | | | | versions that returned None rather than an empty list. | |||||
* | 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 | |
| | | | | more sane | |||||
* | changed return type of listen() -- it's now a dictionary with the following ↵ | Andy McCurdy | 2010-06-22 | 1 | -4/+14 | |
| | | | | keys: type -- the message type, data -- the actual message, channel -- the channel the message was delivered on. if the message was triggered due to a pattern matched from psubscribe, then a 4th key will be present: pattern, indicating the pattern that was matched. | |||||
* | 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 ↵ | Andy McCurdy | 2010-06-15 | 1 | -16/+38 | |
| | | | | | | | redis.lock('lockname'): ..." allow "sleep" to be specified as an argument to the lock moved the timeout parameter to Lock's __init__ to better mimic threading.lock, and allow it to be used in conjunction with context manager support. | |||||
* | 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 | |
| | | | | convenience function on the redis client to instantiate a new Lock object. | |||||
* | 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 | |
| | | | | added a few missing tests | |||||
* | values with scores of 0 were previously failing due to the way the callback ↵ | Andy McCurdy | 2010-05-03 | 1 | -3/+14 | |
| | | | | converted values. changed to a separate function to get proper handling. fixes #33 | |||||
* | 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 | |
| | | | | fixed a typo in hmset from the previous commit |