summaryrefslogtreecommitdiff
path: root/tests/server_commands.py
Commit message (Expand)AuthorAgeFilesLines
* split the client into two pieces -- the normal client with no logging, and a ...loggingAndy McCurdy2011-01-101-1/+2
* Merge branch 'master' of https://github.com/wcmaier/redis-py into loggingAndy McCurdy2011-01-101-0/+54
|\
| * log commands sent to the serverWill Maier2011-01-061-0/+54
* | fixes #76 where ZREVRANK was using the wrong response callbackAndy McCurdy2010-12-211-0/+1
|/
* Client now compatible with 2.2.0 commands. (SLAVEOF, CONFIG GET, CONFIG SET, ...Andy McCurdy2010-12-201-1/+50
* Adds the ability to get multiple external keys in a sort.Jacob Kaplan-Moss2010-10-201-0/+8
* tests for linsert, lpushx, and rpushxAndy McCurdy2010-10-071-0/+42
* Add some tests for WATCHCraig Hawco2010-09-031-0/+19
* New command: zcountKonstantin Merenkov2010-08-171-0/+11
* Small change to pubsub, hopefully fixing #49, or at least making it a little ...Andy McCurdy2010-06-241-14/+21
* changed return type of listen() -- it's now a dictionary with the following k...Andy McCurdy2010-06-221-1/+3
* added ZREMRANGEBYRANK commandAndy McCurdy2010-06-151-0/+13
* BLPOP / BRPOP return tuple instead of a list, as it makes more senseKonstantin Merenkov2010-06-021-10/+10
* blpop / brpop can accept string as keyKonstantin Merenkov2010-06-021-0/+4
* Added HSETNX command and testssebleier2010-06-021-2/+10
* renamed zinter/zunion to zinterstore/zunionstore to stay consistent with Redis.Andy McCurdy2010-05-231-8/+12
* added missing EXPIREAT and SETEX commandsAndy McCurdy2010-05-101-12/+22
* Fixed test_hincrbyKonstantin Merenkov2010-05-091-2/+1
* values with scores of 0 were previously failing due to the way the callback c...Andy McCurdy2010-05-031-2/+5
* added support for zinter and zunionAndy McCurdy2010-04-281-0/+54
* added pubsub testsAndy McCurdy2010-04-271-1/+50
* added support for APPEND and SUBSTR commandsAndy McCurdy2010-04-191-0/+25
* Always return a set object from set-based commands. Thanks Adam Charnock for...Andy McCurdy2010-04-191-0/+2
* 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/+11
* Updated tests to work with redis logic that [] means there's no keyKonstantin Merenkov2010-04-131-11/+11
* HMSET supportKonstantin Merenkov2010-04-131-0/+7
* Move towards binary-safeness of keys and values.Konstantin Merenkov2010-04-011-94/+129
* * fix for #21, make only the "db" argument of select() required. If host and...Andy McCurdy2010-03-261-1/+21
* HEXISTS and HLEN implementationsAndy McCurdy2010-03-181-0/+27
* fix for #18 -- i had copy/pasted some code from another function and forgot t...Andy McCurdy2010-03-161-1/+1
* HKEYS HVALS and HGETALL implementedAndy McCurdy2010-03-161-0/+45
* HDEL implementedAndy McCurdy2010-03-151-4/+19
* added ZRANK and ZREVRANK commands.Andy McCurdy2010-03-151-1/+26
* fixed #15 where zscore previously failed for members of a sorted set that did...Andy McCurdy2010-03-111-12/+14
* HSET now returns 1 if it added a new field to the hash, otherwise 0.Andy McCurdy2010-03-101-1/+19
* HSET now always returned True, which also fixed part of the testAndy McCurdy2010-03-101-3/+2
* added HGET/HSET commandsAndy McCurdy2010-03-101-0/+22
* adding support for the new lpush/rpush returning the list lengthGustavo Picon2010-03-041-3/+9
* fixed a commentandymccurdy2010-02-191-2/+2
* zrange/zrevrange/zrangebyscore should always return None if the key is insval...andymccurdy2010-02-191-0/+8
* should have beest testing lpop, not pop, which is deprecatedandymccurdy2010-02-181-7/+7
* Redis.pop() is deprecated like Redis.push().andymccurdy2010-02-171-1/+74
* - connection objects now store authentication credentials so that reconnect w...andymccurdy2010-02-161-1/+1
* new client passes all command tests, still need tests for connection pool and...andymccurdy2010-02-151-0/+637