Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | HDEL implemented | Andy McCurdy | 2010-03-15 | 1 | -2/+6 | |
| | ||||||
* | added ZRANK and ZREVRANK commands. | Andy McCurdy | 2010-03-15 | 1 | -2/+17 | |
| | ||||||
* | no reason to join the names here -- just let the format_inline do it, that ↵ | Andy McCurdy | 2010-03-12 | 1 | -1/+1 | |
| | | | | way we get the benefit of encoding, too! | |||||
* | Fixed a bug with pipeline execution of AUTH and SELECT commands. These ↵ | Andy McCurdy | 2010-03-12 | 1 | -2/+2 | |
| | | | | | | failed after MULTI and EXEC were added, since you can't run MULTI until you've auth'd, and it doesn't make sense to run SELECT within a multi/exec. Thanks Pat Shields for the bug report | |||||
* | Flushed out the connection manager object a bit more. | Andy McCurdy | 2010-03-12 | 1 | -8/+22 | |
| | ||||||
* | fixed #15 where zscore previously failed for members of a sorted set that ↵ | Andy McCurdy | 2010-03-11 | 1 | -1/+2 | |
| | | | | | | didn't exist. also made anal cleanup changes removing whitespace before colons! | |||||
* | all commands being executed in a pipeline are now executing with a single ↵ | Andy McCurdy | 2010-03-11 | 1 | -2/+3 | |
| | | | | socket send call. this should increase network throughput | |||||
* | Pipeline objects are now executed atomically via the MULTI and EXEC commands | Andy McCurdy | 2010-03-10 | 1 | -13/+57 | |
| | ||||||
* | HSET now returns 1 if it added a new field to the hash, otherwise 0. | Andy McCurdy | 2010-03-10 | 1 | -2/+4 | |
| | | | | 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 | -0/+1 | |
| | ||||||
* | added HGET/HSET commands | Andy McCurdy | 2010-03-10 | 1 | -1/+10 | |
| | | | | removed the KEYS callback -- 1.34 Redis servers now return KEYS with the multi-bulk protocol, which means they're already in a list | |||||
* | the Redis class is now a thread local. This means you can safely pass it ↵ | Andy McCurdy | 2010-03-05 | 1 | -1/+1 | |
| | | | | around between threads and connections will get swapped out correctly. | |||||
* | Merge remote branch 'tabo/master' | Andy McCurdy | 2010-03-04 | 1 | -2/+6 | |
|\ | ||||||
| * | adding support for the new lpush/rpush returning the list length | Gustavo Picon | 2010-03-04 | 1 | -2/+6 | |
| | | ||||||
* | | Merge branch 'master' of github.com:andymccurdy/redis-py | Andy McCurdy | 2010-03-04 | 1 | -10/+11 | |
|\ \ | |/ | ||||||
| * | docstring typos | Zak Johnson | 2010-03-03 | 1 | -9/+9 | |
| | | ||||||
| * | Add Redis.__contains__ to support "'key' in redis" | Zak Johnson | 2010-03-03 | 1 | -1/+2 | |
| | | ||||||
* | | complete analness about the : | Andy McCurdy | 2010-03-04 | 1 | -10/+10 | |
|/ | ||||||
* | zrange/zrevrange/zrangebyscore should always return None if the key is ↵ | andymccurdy | 2010-02-19 | 1 | -1/+1 | |
| | | | | insvalid, even if withscores=True is passed | |||||
* | key lists passed to blpop and brpop are not unmodified. thanks to Patrick ↵ | andymccurdy | 2010-02-18 | 1 | -0/+2 | |
| | | | | Shields for finding this bug | |||||
* | removing the decode() hook from earlier. it's really more effective to ↵ | andymccurdy | 2010-02-17 | 1 | -6/+0 | |
| | | | | serialize/deserialize the data at a higher level. | |||||
* | Redis.pop() is deprecated like Redis.push(). | andymccurdy | 2010-02-17 | 1 | -0/+3 | |
| | | | | Added a number of tests for the SORT command | |||||
* | fixed a pipeline bug where a connection that had timed out and needed to ↵ | andymccurdy | 2010-02-16 | 1 | -6/+10 | |
| | | | | re-auth or re-select the appropriate database would end up adding the auth/select command to the end of the pipeline rather than executing immediately. | |||||
* | added accessors for host/port/db information off the current connection | andymccurdy | 2010-02-16 | 1 | -0/+13 | |
| | ||||||
* | - added ability for subclasses of Redis to provide their own decode logic if ↵ | andymccurdy | 2010-02-16 | 1 | -0/+6 | |
| | | | | | | desired. - setup.py needed to specify the package rather than py_module in order for build to work correctly. | |||||
* | - connection objects now store authentication credentials so that reconnect ↵ | andymccurdy | 2010-02-16 | 1 | -14/+31 | |
| | | | | | | | 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/+885 | |
and pipelining. |