summaryrefslogtreecommitdiff
path: root/redis/client.py
Commit message (Expand)AuthorAgeFilesLines
* split the client into two pieces -- the normal client with no logging, and a ...loggingAndy McCurdy2011-01-101-1586/+0
* Merge branch 'master' of https://github.com/wcmaier/redis-py into loggingAndy McCurdy2011-01-101-7/+47
|\
| * Guard all log statements with log_enabled().Will Maier2011-01-071-5/+11
| * shield logging with isEnabledFor.Will Maier2011-01-071-6/+8
| * log connects/disconnectsWill Maier2011-01-061-0/+2
| * log commands sent to the serverWill Maier2011-01-061-0/+7
| * encode commands at the last possible moment to make logging easier laterWill Maier2011-01-061-7/+11
| * add repr_command(), a function to consistently represent commandsWill Maier2011-01-061-0/+8
| * add logging boilerplateWill Maier2011-01-061-0/+11
* | Merge branch 'master' of https://github.com/guidog/redis-py into guidog-masterAndy McCurdy2010-12-311-1/+1
|\ \
| * | Fixed issue 89.guidog2010-12-231-1/+1
* | | fix for #91 and #92. errno import was being overwritten by the same local var...Andy McCurdy2010-12-311-3/+3
|/ /
* | fixes #76 where ZREVRANK was using the wrong response callbackAndy McCurdy2010-12-211-2/+2
|/
* Client now compatible with 2.2.0 commands. (SLAVEOF, CONFIG GET, CONFIG SET, ...Andy McCurdy2010-12-201-5/+76
* better error handing during socket writing. fixes #83Andy McCurdy2010-11-181-1/+5
* socket_timeout works when connection initialization times out.Konstantin Merenkov2010-11-021-1/+1
* Adds the ability to get multiple external keys in a sort.Jacob Kaplan-Moss2010-10-201-2/+11
* adjusted comments to reflect proper error returnsAndy McCurdy2010-10-071-5/+7
* Add support for LPUSHX, RPUSHX, LINSERTJD Maturen2010-10-071-2/+19
* timeout of None to the brpop/blpop is the same as timeout=0Andy McCurdy2010-09-291-0/+4
* Use the correct number of parameters for the UNWATCH command.Craig Hawco2010-09-031-2/+2
* Add UNWATCH as well.Craig Hawco2010-09-031-1/+10
* Add WATCH command to redis-pyCraig Hawco2010-09-031-2/+14
* slight optimization to hmset, mset, and msetnx for both clarity and speedAndy McCurdy2010-08-191-3/+6
* optimized execute_command thanks to github user SuorAndy McCurdy2010-08-181-7/+4
* added a shutdown command. fixes #58. no tests for this because it would be im...Andy McCurdy2010-08-181-0/+11
* functions that return sets should now work against older Redis server version...Andy McCurdy2010-08-181-1/+1
* New command: zcountKonstantin Merenkov2010-08-171-0/+3
* Small change to pubsub, hopefully fixing #49, or at least making it a little ...Andy McCurdy2010-06-241-2/+7
* changed return type of listen() -- it's now a dictionary with the following k...Andy McCurdy2010-06-221-4/+14
* add psubscribe and punsubscribe to subscription commandstwidi2010-06-221-1/+1
* added context manager support to the Lock object so you can do "with redis.lo...Andy McCurdy2010-06-151-16/+38
* configurable sleep durationAndy McCurdy2010-06-151-2/+5
* added a Lock class that mimics the behavior of threading.Lock.Andy McCurdy2010-06-151-0/+69
* added ZREMRANGEBYRANK commandAndy McCurdy2010-06-151-2/+12
* BLPOP / BRPOP return tuple instead of a list, as it makes more senseKonstantin Merenkov2010-06-021-0/+1
* blpop / brpop can accept string as keyKonstantin Merenkov2010-06-021-2/+8
* Added HSETNX command and testssebleier2010-06-021-0/+7
* renamed zinter/zunion to zinterstore/zunionstore to stay consistent with Redis.Andy McCurdy2010-05-231-2/+14
* added missing EXPIREAT and SETEX commandsAndy McCurdy2010-05-101-3/+20
* values with scores of 0 were previously failing due to the way the callback c...Andy McCurdy2010-05-031-3/+14
* added support for zinter and zunionAndy McCurdy2010-04-281-0/+32
* added pubsub testsAndy McCurdy2010-04-271-2/+24
* docs and param name consistency cleanupAndy McCurdy2010-04-271-3/+6
* added support for APPEND and SUBSTR commandsAndy McCurdy2010-04-191-0/+15
* Always return a set object from set-based commands. Thanks Adam Charnock for...Andy McCurdy2010-04-191-3/+4
* HGETALL returns empty dict instead of None when there's no key in redisKonstantin Merenkov2010-04-171-1/+1
* HMGET + testsKonstantin Merenkov2010-04-171-0/+4
* HMSET supportKonstantin Merenkov2010-04-131-1/+7
* [issue 29] Redis instance doesn't use shared connection pool by defaultKonstantin Merenkov2010-04-121-5/+4