summaryrefslogtreecommitdiff
path: root/tests/server_commands.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 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 ↵Andy McCurdy2010-03-111-12/+14
| | | | | | didn't exist. also made anal cleanup changes removing whitespace before colons!
* HSET now returns 1 if it added a new field to the hash, otherwise 0.Andy McCurdy2010-03-101-1/+19
| | | | There was no test for RPUSH, now there is :)
* 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
| | | | removed the KEYS callback -- 1.34 Redis servers now return KEYS with the multi-bulk protocol, which means they're already in a list
* 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 ↵andymccurdy2010-02-191-0/+8
| | | | insvalid, even if withscores=True is passed
* 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
| | | | Added a number of tests for the SORT command
* - connection objects now store authentication credentials so that reconnect ↵andymccurdy2010-02-161-1/+1
| | | | | | | works as expected. - Connection.connect now calls back into the redis instance class to send the auth and select commands to the server. this does not yet work with pipelines, which will be addressed shortly. - Added very basic tests for the connection pool and pipeline
* new client passes all command tests, still need tests for connection pool ↵andymccurdy2010-02-151-0/+637
and pipelining.