Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | encoding tests | andy | 2013-06-06 | 2 | -9/+12 |
| | |||||
* | Merge branch 'master' into pytest | andy | 2013-06-04 | 3 | -1/+8 |
|\ | |||||
| * | Merge pull request #351 from yossigo/busy-loading | Andy McCurdy | 2013-06-04 | 3 | -1/+8 |
| |\ | | | | | | | Add BusyLoadingError exception. | ||||
| | * | BusyLoadingError should inherit ConnectionError. | Yossi Gottlieb | 2013-06-04 | 1 | -1/+1 |
| | | | |||||
| | * | Add BusyLoadingError exception to differentiate -LOADING errors from connect ↵ | Yossi Gottlieb | 2013-06-04 | 3 | -1/+8 |
| | | | | | | | | | | | | errors. | ||||
* | | | connection pool tests | andy | 2013-06-04 | 1 | -0/+2 |
| | | | |||||
* | | | Merge branch 'master' into pytest | andy | 2013-06-04 | 1 | -0/+4 |
|\ \ \ | |/ / | | | | | | | | | | Conflicts: tests/server_commands.py | ||||
| * | | Add CONFIG RESETSTAT support. | Yossi Gottlieb | 2013-06-04 | 1 | -0/+4 |
| |/ | |||||
* | | pytest framework and server commands | andy | 2013-06-04 | 1 | -27/+40 |
|/ | |||||
* | Merge branch 'master' of github.com:andymccurdy/redis-py | andy | 2013-05-23 | 1 | -1/+2 |
|\ | |||||
| * | pep8 compliance | Carpentier Pierre-Francois | 2013-05-15 | 1 | -1/+1 |
| | | |||||
| * | error in the __call__ method of class Script | Carpentier Pierre-Francois | 2013-05-15 | 1 | -1/+2 |
| | | | | | | | | | | | | | | If "client" is a pipeline, and this pipeline is empty, python converts "client" to False when casting in bool because Class BasePipeline has a method __len__. "client" is reset to self.registered_client, and the script is not executed in the pipeline as it should. The correct test is to check if "client" equals None. see http://stackoverflow.com/questions/100732/why-is-if-not-someobj-better-than-if-someobj-none-in-python for bool conversion (first answer). | ||||
* | | use iterators for dict traversal in both python 2 and 3 | andy | 2013-05-23 | 2 | -7/+7 |
|/ | |||||
* | version 2.7.52.7.5 | andy | 2013-05-14 | 1 | -1/+1 |
| | |||||
* | from_url supports URI without a port number, defaults to 6379 | Aaron Westendorf | 2013-05-10 | 1 | -1/+1 |
| | |||||
* | can reuse the already existing parse_error routine to deal with LOADING errors. | andy | 2013-05-06 | 1 | -6/+3 |
| | |||||
* | DEL, HDEL, ZREM commands now return number of keys deleted. fixed #243 | andy | 2013-05-01 | 1 | -5/+6 |
| | |||||
* | 2.7.42.7.4 | andy | 2013-04-28 | 1 | -1/+1 |
| | |||||
* | Adding incrby alias | Krzysztof Dorosz | 2013-04-28 | 1 | -0/+10 |
| | |||||
* | remove offending pep8 line, travis ci should pass now | andy | 2013-04-27 | 1 | -2/+0 |
| | |||||
* | testing travis-ci pep8 integration | andy | 2013-04-27 | 1 | -0/+2 |
| | |||||
* | pep8 | andy | 2013-04-27 | 3 | -56/+53 |
| | |||||
* | Implement extended set options added in Redis 2.6.12. | george yoshida | 2013-04-27 | 1 | -1/+0 |
| | | | | - fix wording/formatting | ||||
* | Implement extended set options added in Redis 2.6.12. | george yoshida | 2013-04-27 | 1 | -1/+1 |
| | | | | - support Python 3.x | ||||
* | Implement extended set options added in Redis 2.6.12. | george yoshida | 2013-04-27 | 1 | -4/+35 |
| | | | | | | SPECS : - http://redis.io/commands/set - https://github.com/antirez/redis/issues/931 | ||||
* | 2.7.32.7.3 | andy | 2013-04-22 | 1 | -1/+1 |
| | |||||
* | pep8 | andy | 2013-04-22 | 4 | -8/+8 |
| | |||||
* | Merge branch 'mapleoin-master' | andy | 2013-04-22 | 1 | -2/+26 |
|\ | |||||
| * | Merge branch 'master' of git://github.com/mapleoin/redis-py into mapleoin-master | andy | 2013-04-22 | 1 | -2/+26 |
| |\ | | | | | | | | | | | | | Conflicts: redis/client.py | ||||
| | * | use response callbacks for sort() with tuples to work with pipelines | Ionuț Arțăriși | 2011-10-11 | 1 | -9/+18 |
| | | | |||||
| | * | add an optional argument to sort to make it return tuples | Ionuț Arțăriși | 2011-10-10 | 1 | -2/+17 |
| | | | |||||
* | | | Merge pull request #338 from stephan-hof/corrupted_pipeline_socket | Andy McCurdy | 2013-04-22 | 1 | -2/+9 |
|\ \ \ | | | | | | | | | socket gets corrupted if errors in pipeline happen | ||||
| * | | | Add python3 and python2.5 compatibility | hofmockel | 2013-04-19 | 1 | -2/+2 |
| | | | | |||||
| * | | | Read all command responses of a pipeline | hofmockel | 2013-04-17 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | 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 | -1/+10 |
|\ \ \ \ | |_|/ / |/| | | | Format code per pep8 guidelines | ||||
| * | | | Format code per pep8 guidelines | Paul Belanger | 2013-03-30 | 3 | -1/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 | 3 | -1/+191 |
|\ \ \ \ | | | | | | | | | | | Add optional `redis.connection.BlockingConnectionPool` class. | ||||
| * | | | | connection: fix py3 syntax bug. | James Arthur | 2013-04-19 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | connection: remove stray print statement. | James Arthur | 2013-04-19 | 1 | -1/+0 |
| | | | | | |||||
| * | | | | compat: extract queue imports to _compat module. | James Arthur | 2013-04-19 | 2 | -6/+29 |
| | | | | | | | | | | | | | | | | | | | | Adds python 2.5 support for the LifoQueue structure. | ||||
| * | | | | connection: add an optional `BlockingConnectionPool` class. | James Arthur | 2013-04-18 | 2 | -0/+168 |
| | |/ / | |/| | | | | | | | | | | | | | | | | | | * implements the same api as the default `ConnectionPool` * blocks for a specified timeout when getting a connection if no connections are available | ||||
* | | | | math is hard | andy | 2013-04-22 | 1 | -2/+2 |
| | | | | |||||
* | | | | added PSETEX | andy | 2013-04-22 | 1 | -8/+12 |
| | | | | |||||
* | | | | Merge branch 'psetex' of git://github.com/yamt/redis-py into yamt-psetex | andy | 2013-04-22 | 1 | -0/+7 |
|\ \ \ \ | |/ / / |/| | | | |||||
| * | | | implement PSETEX command | yamamoto | 2012-10-31 | 1 | -0/+7 |
| | | | | |||||
* | | | | Merge pull request #283 from salimane/upstream | Andy McCurdy | 2013-04-15 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | in _compat for py3k only encode if param is not bytes type in b() | ||||
| * | | | | in _compat for py3k only encode if param is not bytes type in b() | Salimane Adjao Moustapha | 2012-09-14 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | allow client.transaction() to return the value of func based on kwarg. fix ↵ | andy | 2013-04-15 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | for #331 | ||||
* | | | | | Catch exception, not anything (which could be KeyboardInterrupt). | Lucian Branescu Mihaila | 2013-04-10 | 2 | -7/+7 |
| |_|/ / |/| | | | |||||
* | | | | Merge branch 'master' of git://github.com/mattrobenolt/redis-py into ↵ | andy | 2013-03-28 | 1 | -5/+5 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mattrobenolt-master Conflicts: redis/exceptions.py |