summaryrefslogtreecommitdiff
path: root/redis/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* redis-py 3.0.13.0.13.0Andy McCurdy2018-11-151-1/+1
|
* fix rst format issuesAndy McCurdy2018-11-151-2/+9
|
* redis-py 3.0.0Andy McCurdy2018-11-151-1/+1
|
* Version 2.10.6, finally...2.10.6Andy McCurdy2017-08-161-1/+1
|
* 2.10.5 (incrementing the version to avoid a pypi issue)2.10.5Andy McCurdy2015-11-021-1/+1
|
* 2.10.42.10.4Andy McCurdy2015-11-021-1/+1
|
* 2.10.32.10.3Andy McCurdy2014-08-141-1/+1
|
* 2.10.22.10.2Andy McCurdy2014-08-111-1/+1
|
* 2.10.12.10.1Andy McCurdy2014-06-021-1/+1
|
* 2.10.02.10.0Andy McCurdy2014-06-011-1/+1
|
* Don't retry commands that fail due to a socket.timeout by default.Andy McCurdy2014-05-271-7/+8
| | | | | | | | | | | | | | | | | | | | Users now have the ability about how socket.timeout errors are handled. Previously socket.timeout errors were handled just like any other socket error in that the command would be retried once. This createed a potential race condition when the client sends a command to a busy Redis server that can't reply faster than the client's `socket_timeout` option. In this case, the server will still eventually process the command. There's now a `retry_on_timeout` option that's set to False by default. If `retry_on_timeout` is False, any socket.timeout error will raise a TimeoutError exception. If `retry_on_timeout` is set to True, the client will retry executing the command once just like other socket.error exceptions. TODO: Write better tests for this code. TODO: Much of this logic could/should be moved to the ConnectionPool or Connection objects. Fixes #261
* add SSLConnection to packageAndy McCurdy2014-05-121-1/+2
|
* SentinelManagedConnections to master servers disconnect on READONLY errors.Andy McCurdy2014-05-061-1/+2
| | | | | Any attempt to reconnect will force all connections in that pool to update their connections to the new master. Fixes #435
* pep8, version bump to 2.9.12.9.1Andy McCurdy2014-01-231-1/+1
|
* version bump to 2.9.02.9.0Andy McCurdy2014-01-021-1/+1
|
* version bump to 2.8.02.8.0Andy McCurdy2013-08-231-1/+1
|
* 2.7.62.7.6andy2013-06-141-1/+1
|
* Add BusyLoadingError exception to differentiate -LOADING errors from connect ↵Yossi Gottlieb2013-06-041-0/+2
| | | | errors.
* version 2.7.52.7.5andy2013-05-141-1/+1
|
* 2.7.42.7.4andy2013-04-281-1/+1
|
* 2.7.32.7.3andy2013-04-221-1/+1
|
* pep8andy2013-04-221-1/+1
|
* connection: add an optional `BlockingConnectionPool` class.James Arthur2013-04-181-0/+1
| | | | | | * implements the same api as the default `ConnectionPool` * blocks for a specified timeout when getting a connection if no connections are available
* bump to 2.7.22.7.2andy2012-11-161-1/+1
|
* 2.7.1 version bump, include tests with source dist2.7.1andy2012-10-081-1/+1
|
* 2.7.0, version bump2.7.0andy2012-10-071-1/+1
|
* adding SkipTests for BITOP/BITCOUNT commands below redis 2.6, fixing logic ↵2.6.2andy2012-08-151-1/+1
| | | | to work with python3
* version bump to 2.6.12.6.1andy2012-08-141-1/+1
|
* Cleaned up code for PEP 8 complianceAlex Grönholm2012-08-061-3/+3
|
* version bump2.6.0andy2012-07-171-1/+1
|
* 2.4.132.4.13andy2012-05-181-1/+1
|
* Merge branch 'from_url' of https://github.com/kennethreitz/redis-py into ↵andy2012-05-181-1/+2
|\ | | | | | | | | | | | | kennethreitz-from_url Conflicts: redis/__init__.py
| * redis.from_urlKenneth Reitz2012-05-181-1/+3
| |
* | 2.4.12, redis-py is now fork-safe2.4.12andy2012-04-271-1/+1
| |
* | version bump2.4.11andy2012-01-131-1/+1
| |
* | Releasing 2.4.102.4.10andy2011-10-281-1/+1
| |
* | Renamed the base client class to StrictRedis, replacing ZADD and LREM in ↵andy2011-07-261-2/+3
| | | | | | | | favor of their official argument order. The Redis class is now a subclass of StrictRedis, implementing the legacy redis-py implementations of ZADD and LREM. Docs have been updated to suggesting the use of StrictRedis.
* | 2.4.92.4.9andy2011-07-221-1/+1
| |
* | 2.4.82.4.8andy2011-07-201-1/+1
| |
* | version bump for 2.4.72.4.7andy2011-07-171-1/+1
| |
* | version bump to 2.4.62.4.6andy2011-07-131-1/+1
| |
* | Provide WatchError in the top-level module.Dave Peticolas2011-06-271-1/+2
| |
* | version bump 2.4.5Andy McCurdy2011-06-101-1/+1
| |
* | added VERSION as a tuple based on the __version__ stringAndy McCurdy2011-06-071-0/+1
| |
* | fix a typo introduced in last commit. thanks Ask Solem for finding.Andy McCurdy2011-06-071-1/+1
| |
* | fix UnixDomainSocketConnection to report error messages based on it's ↵Andy McCurdy2011-06-071-1/+1
| | | | | | | | attributes rather than the TCP socket attributes. fixes #140
* | version bump to 2.4.2Andy McCurdy2011-06-061-1/+1
| |
* | version bumpAndy McCurdy2011-06-011-1/+1
| |
* | version bump!2.4Andy McCurdy2011-06-011-1/+1
| |
* | added Connection and UnixDomainSocketConnection to module importsAndy McCurdy2011-05-231-3/+7
|/