Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | HKEYS HVALS and HGETALL implemented | Andy McCurdy | 2010-03-16 | 1 | -0/+45 | |
| | ||||||
* | HDEL implemented | Andy McCurdy | 2010-03-15 | 1 | -4/+19 | |
| | ||||||
* | added ZRANK and ZREVRANK commands. | Andy McCurdy | 2010-03-15 | 1 | -1/+26 | |
| | ||||||
* | fixed #15 where zscore previously failed for members of a sorted set that ↵ | Andy McCurdy | 2010-03-11 | 1 | -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 McCurdy | 2010-03-10 | 1 | -1/+19 | |
| | | | | There was no test for RPUSH, now there is :) | |||||
* | HSET now always returned True, which also fixed part of the test | Andy McCurdy | 2010-03-10 | 1 | -3/+2 | |
| | ||||||
* | added HGET/HSET commands | Andy McCurdy | 2010-03-10 | 1 | -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 length | Gustavo Picon | 2010-03-04 | 1 | -3/+9 | |
| | ||||||
* | fixed a comment | andymccurdy | 2010-02-19 | 1 | -2/+2 | |
| | ||||||
* | zrange/zrevrange/zrangebyscore should always return None if the key is ↵ | andymccurdy | 2010-02-19 | 1 | -0/+8 | |
| | | | | insvalid, even if withscores=True is passed | |||||
* | should have beest testing lpop, not pop, which is deprecated | andymccurdy | 2010-02-18 | 1 | -7/+7 | |
| | ||||||
* | Redis.pop() is deprecated like Redis.push(). | andymccurdy | 2010-02-17 | 1 | -1/+74 | |
| | | | | Added a number of tests for the SORT command | |||||
* | - connection objects now store authentication credentials so that reconnect ↵ | andymccurdy | 2010-02-16 | 1 | -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 ↵ | andymccurdy | 2010-02-15 | 1 | -0/+637 | |
and pipelining. |