Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |||||
* | 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 ↵ | Andy McCurdy | 2010-04-19 | 1 | -3/+4 | |
| | | | | for the bug report. | |||||
* | 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 | |
| | | | | | | | | | | | | | | | * Redis constructor accepts connection_pool keyword argument, that defaults to None (no shared connection pool). However, you can create ConnectionManager instance yourself and pass it to as many Redis instances as you want, making them use shared connection pool. * Renamed ConnectionManager to ConnectionPool. * Exported ConnectionPool, so now you can import it in your code and create instances. * Removed test_pipeline_with_fresh_connection test, since all redis instances don't use shared pool by default now. * corrected few typos in comments. * repaired the rest of tests. | |||||
* | [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 ↵ | Andy McCurdy | 2010-03-31 | 1 | -18/+46 | |
| | | | | by passing the transaction parameter. This fixes #23. | |||||
* | 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 | |
| | | | | | | | | | * Dropped support of all protocols except multi-bulk the only protocol that yet to be released redis 2.0 is able understand * As a side-effect there is an 'execute_command' function exposed to the library user. As for now it is pretty useless :) * Added (only) two tests | |||||
* | [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 | |
| | | | | | | | | | redis.subscribe('my_channel') for msg in redis.listen(): channel, data = msg['channel'], msg['message'] ... listen() is a generator that will generate new messages as they come in. it will continue to block until all channels are unsubscribed. | |||||
* | * fix for #21, make only the "db" argument of select() required. If host ↵ | Andy McCurdy | 2010-03-26 | 1 | -4/+23 | |
| | | | | | | and port aren't specified, the host/port options on the existing connection are used. * added HINCRBY support | |||||
* | HEXISTS and HLEN implementations | Andy McCurdy | 2010-03-18 | 1 | -12/+26 | |
| | | | | added a socket_timeout parameter to allow commands to timeout and raise an error | |||||
* | fix for #18 -- i had copy/pasted some code from another function and forgot ↵ | Andy McCurdy | 2010-03-16 | 1 | -1/+1 | |
| | | | | to actually change it! thanks to Sam (SJD) for the bug report | |||||
* | HKEYS HVALS and HGETALL implemented | Andy McCurdy | 2010-03-16 | 1 | -0/+16 | |
| |