Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | automatic message decoding if decode_responses=True. bugfixes, tests. | Andy McCurdy | 2014-04-01 | 1 | -32/+222 |
| | |||||
* | DEBUG LOADING was released in 2.8.8, so skip test with earlier versions | Andy McCurdy | 2014-03-31 | 1 | -2/+1 |
| | |||||
* | make sure we know the order of expected subscribe/unsubscribe messages | Andy McCurdy | 2014-03-29 | 4 | -17/+24 |
| | |||||
* | fixes PubSub.subscribe once and for all. | Andy McCurdy | 2014-03-28 | 2 | -51/+122 |
| | |||||
* | fixed a bunch get_message() bugs, refactored the PythonParser to be saner. | Andy McCurdy | 2014-03-27 | 1 | -75/+116 |
| | | | | still need more pubsub tests but all this stuff *seems* to be working now | ||||
* | make sure hiredis parser raises connection errors | Andy McCurdy | 2014-03-10 | 2 | -8/+18 |
| | |||||
* | with tox/travis, tests don't need to know about the environment | Andy McCurdy | 2014-01-28 | 1 | -14/+4 |
| | |||||
* | Add extra info to exceptions raised in pipelines. Fixes #407 | Andy McCurdy | 2013-12-08 | 1 | -4/+28 |
| | | | | | | | | | ResponseErrors generated by commands executed in a pipeline now includes the command position in the pipeline and the actual command sent to the Redis server. For example: Command # 3 (LPUSH c 3) of pipeline caused error: <actual error message from Redis server> | ||||
* | some *SCAN cleanup | Andy McCurdy | 2013-12-03 | 1 | -11/+11 |
| | |||||
* | add 2.8.0 new methods: scan/sscan/hscan/zscan | jingchao | 2013-11-27 | 1 | -0/+39 |
| | |||||
* | Move repr to Connection and UnixDomainConnection. Add repr support to Redis, ↵ | Mark Roberts | 2013-11-05 | 1 | -7/+52 |
| | | | | ConnectionPool, and BlockingConnectionPool | ||||
* | Add support for showing db connection info via repr | Mark Roberts | 2013-11-01 | 1 | -0/+6 |
| | |||||
* | Merge branch 'vitek-sentinel' | Andy McCurdy | 2013-09-13 | 1 | -0/+173 |
|\ | | | | | | | | | Conflicts: CHANGES | ||||
| * | comments and changelog | Andy McCurdy | 2013-09-13 | 1 | -1/+1 |
| | | |||||
| * | Add tests for sentinel module | Vitja Makarov | 2013-09-07 | 1 | -0/+173 |
| | | |||||
* | | Errors during auth or DB select now close the socket | Andy McCurdy | 2013-09-08 | 1 | -0/+17 |
|/ | | | | Fixes #368 | ||||
* | Simplify dump and restore test case - works with Python 3.x now. | Justin Head | 2013-07-18 | 1 | -4/+3 |
| | |||||
* | Add dump and restore test case. | Justin Head | 2013-07-18 | 1 | -0/+9 |
| | |||||
* | encoding fix | andy | 2013-06-07 | 1 | -1/+1 |
| | |||||
* | python 2.5 support | andy | 2013-06-07 | 1 | -0/+1 |
| | |||||
* | pubsub tests | andy | 2013-06-06 | 3 | -124/+98 |
| | |||||
* | encoding tests | andy | 2013-06-06 | 3 | -71/+40 |
| | |||||
* | locking tests in pytest | andy | 2013-06-06 | 2 | -71/+61 |
| | |||||
* | python 2.5 compat | andy | 2013-06-05 | 2 | -0/+2 |
| | |||||
* | pipeline tests converted to pytest | andy | 2013-06-04 | 2 | -202/+202 |
| | |||||
* | connection pool tests | andy | 2013-06-04 | 1 | -32/+21 |
| | |||||
* | bad merge conflict | andy | 2013-06-04 | 1 | -1850/+0 |
| | |||||
* | Merge branch 'master' into pytest | andy | 2013-06-04 | 2 | -0/+1856 |
|\ | | | | | | | | | Conflicts: tests/server_commands.py | ||||
| * | pep8 | andy | 2013-06-04 | 1 | -1/+2 |
| | | |||||
| * | Add CONFIG RESETSTAT support. | Yossi Gottlieb | 2013-06-04 | 1 | -0/+6 |
| | | |||||
* | | pytest config file | andy | 2013-06-04 | 1 | -0/+26 |
| | | |||||
* | | pytest framework and server commands | andy | 2013-06-04 | 3 | -1874/+1227 |
|/ | |||||
* | use iterators for dict traversal in both python 2 and 3 | andy | 2013-05-23 | 1 | -6/+6 |
| | |||||
* | DEL, HDEL, ZREM commands now return number of keys deleted. fixed #243 | andy | 2013-05-01 | 1 | -6/+25 |
| | |||||
* | tests should pass on older redis versions | andy | 2013-04-27 | 1 | -0/+35 |
| | |||||
* | travis runs 2.6.12, great. | andy | 2013-04-27 | 1 | -10/+0 |
| | |||||
* | testing redis version on travis | andy | 2013-04-27 | 1 | -0/+10 |
| | |||||
* | finer grain tests | andy | 2013-04-27 | 1 | -5/+7 |
| | |||||
* | Implement extended set options added in Redis 2.6.12. | george yoshida | 2013-04-27 | 1 | -2/+2 |
| | | | | - fix wording/formatting | ||||
* | Implement extended set options added in Redis 2.6.12. | george yoshida | 2013-04-27 | 1 | -0/+36 |
| | | | | | | SPECS : - http://redis.io/commands/set - https://github.com/antirez/redis/issues/931 | ||||
* | pep8 | andy | 2013-04-22 | 1 | -12/+10 |
| | |||||
* | Merge branch 'mapleoin-master' | andy | 2013-04-22 | 1 | -0/+49 |
|\ | |||||
| * | Merge branch 'master' of git://github.com/mapleoin/redis-py into mapleoin-master | andy | 2013-04-22 | 1 | -0/+49 |
| |\ | | | | | | | | | | | | | Conflicts: redis/client.py | ||||
| | * | add an optional argument to sort to make it return tuples | Ionuț Arțăriși | 2011-10-10 | 1 | -0/+44 |
| | | | |||||
* | | | Merge pull request #338 from stephan-hof/corrupted_pipeline_socket | Andy McCurdy | 2013-04-22 | 1 | -0/+15 |
|\ \ \ | | | | | | | | | socket gets corrupted if errors in pipeline happen | ||||
| * | | | Add python3 and python2.5 compatibility | hofmockel | 2013-04-19 | 1 | -1/+1 |
| | | | | |||||
| * | | | Read all command responses of a pipeline | hofmockel | 2013-04-17 | 1 | -0/+15 |
| | | | | | | | | | | | | | | | | | | | | Otherwise a error makes the responses stuck in the socket. Which leads to wrong responses for the following commands | ||||
* | | | | Merge pull request #327 from pabelanger/pep8 | Andy McCurdy | 2013-04-22 | 3 | -2/+8 |
|\ \ \ \ | |_|/ / |/| | | | Format code per pep8 guidelines | ||||
| * | | | Format code per pep8 guidelines | Paul Belanger | 2013-03-30 | 3 | -2/+8 |
| |/ / | | | | | | | | | | | | | | | | A simple patch to enable pep8 in tox and format our code properly. Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com> | ||||
* | | | Merge pull request #340 from thruflo/master | Andy McCurdy | 2013-04-22 | 2 | -0/+78 |
|\ \ \ | | | | | | | | | Add optional `redis.connection.BlockingConnectionPool` class. |