summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* changelogpubsubAndy McCurdy2014-04-041-1/+4
|
* typosAndy McCurdy2014-04-011-18/+22
|
* pubsub docsAndy McCurdy2014-04-011-0/+191
|
* automatic message decoding if decode_responses=True. bugfixes, tests.Andy McCurdy2014-04-013-59/+289
|
* DEBUG LOADING was released in 2.8.8, so skip test with earlier versionsAndy McCurdy2014-03-311-2/+1
|
* require pytest>=2.5 when running tests from setup.pyAndy McCurdy2014-03-291-1/+1
|
* fix pep8 environment, explicit python versions and require pytest>=2.5Andy McCurdy2014-03-291-13/+11
|
* make sure we know the order of expected subscribe/unsubscribe messagesAndy McCurdy2014-03-294-17/+24
|
* fixes PubSub.subscribe once and for all.Andy McCurdy2014-03-283-100/+170
|
* make sure we're not holding onto any referencesAndy McCurdy2014-03-271-0/+2
|
* fixed a bunch get_message() bugs, refactored the PythonParser to be saner.Andy McCurdy2014-03-273-131/+246
| | | | still need more pubsub tests but all this stuff *seems* to be working now
* Merge branch 'master' into pubsubAndy McCurdy2014-03-1329-2598/+2902
|\ | | | | | | | | Conflicts: redis/connection.py
| * changelogAndy McCurdy2014-03-101-0/+2
| |
| * make sure hiredis parser raises connection errorsAndy McCurdy2014-03-103-8/+23
| |
| * Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2014-01-282-4/+4
| |\
| | * Merge pull request #429 from p/argument-spellingAndy McCurdy2014-01-262-4/+4
| | |\ | | | | | | | | Fix argument spelling
| | | * Fix argument spellingOleg Pudeyev2014-01-252-4/+4
| | |/
| * | with tox/travis, tests don't need to know about the environmentAndy McCurdy2014-01-281-14/+4
| |/
| * pep8, version bump to 2.9.12.9.1Andy McCurdy2014-01-233-6/+10
| |
| * Added timeout.Adam Mashinchi2014-01-231-1/+1
| |
| * Add IPv6 support to 2.6+.Adam Mashinchi2014-01-221-0/+3
| |
| * Merge pull request #414 from shearic/fix_badconnectionAndy McCurdy2014-01-021-0/+1
| |\ | | | | | | this issue fixes #413
| | * this issue fixes #413Richard Shea2013-12-171-0/+1
| | | | | | | | | | | | connections that have gotten a mismatch number of responses to requests in a pipeline should be disconnected
| * | remove pytest's cache directory and *.pyc files from distributionAndy McCurdy2014-01-021-0/+2
| | |
| * | version bump to 2.9.02.9.0Andy McCurdy2014-01-022-2/+2
| | |
| * | Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2014-01-021-1/+2
| |\ \ | | |/
| | * Merge pull request #409 from paulovn/masterAndy McCurdy2013-12-101-1/+2
| | |\ | | | | | | | | Circular reference in SentinelConnectionPool changed to weak reference, to enable garbage collection
| | | * self reference in SentinelConnectionPool changed to weak reference Paulo Villegas2013-12-011-1/+2
| | | | | | | | | | | | circular reference changed to weak reference to enable garbage collection
| * | | ConnectionPools in forked and multi-threaded environments play nicer.Andy McCurdy2014-01-022-13/+22
| |/ / | | | | | | | | | Thanks Christian Joergensen. Fixes #412
| * | Add extra info to exceptions raised in pipelines. Fixes #407Andy McCurdy2013-12-085-26/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 cleanupAndy McCurdy2013-12-033-33/+26
| | |
| * | Merge branch 'master' into pr/404Andy McCurdy2013-12-032-9/+23
| |\ \ | | |/
| | * Merge branch 'pr/403'Andy McCurdy2013-11-281-2/+6
| | |\
| | | * Fixes `Redis.__delitem__` & `Redis.__setitem__`.Bertrand Bordage2013-11-261-2/+6
| | | |
| | * | Merge pull request #373 from sirnicolaz/sugarAndy McCurdy2013-11-261-0/+10
| | |\ \ | | | | | | | | | | Add utility for pipelining within 'with' statement.
| | | * | Move import statement on top for PEP8 compliancy.Nicola Miotto2013-11-131-1/+3
| | | | |
| | | * | Add utility for pipelining within 'with' statement.sirnicolaz2013-08-171-0/+8
| | | | |
| | * | | proper casing of "Lua" in commentsAndy McCurdy2013-11-261-7/+7
| | | | |
| * | | | fix pep8 incompabilityjingchao2013-11-271-1/+2
| | | | |
| * | | | add 2.8.0 new methods: scan/sscan/hscan/zscanjingchao2013-11-272-1/+131
| |/ / /
| * | | Merge pull request #384 from dystedium/fixlockAndy McCurdy2013-11-261-2/+3
| |\ \ \ | | | | | | | | | | Lock.release(): reorder code so assignment to self.acquired_until is protected by the lock.
| | * | | Lock.release(): reorder code so assignment towil paredes2013-09-281-2/+3
| | | | | | | | | | | | | | | | | | | | self.acquired_until is protected by the lock.
| * | | | Merge branch 'pr/391'Andy McCurdy2013-11-261-1/+10
| |\ \ \ \
| | * | | | double quotes rather than singlesAndy McCurdy2013-11-261-5/+6
| | | | | |
| | * | | | remove TODO, it is implemented by BlockingConnectionPool without a timeoutEric Urban2013-10-211-1/+0
| | | | | |
| | * | | | Update documentation on __init__ of ConnectionPool to explain usage and behaviorEric Urban2013-10-211-0/+9
| | | | | |
| * | | | | changelogAndy McCurdy2013-11-261-0/+4
| | | | | |
| * | | | | Merge branch 'pr/399'Andy McCurdy2013-11-263-1/+83
| |\ \ \ \ \
| | * | | | | Move repr to Connection and UnixDomainConnection. Add repr support to Redis, ↵Mark Roberts2013-11-053-11/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ConnectionPool, and BlockingConnectionPool
| | * | | | | Add support for showing db connection info via reprMark Roberts2013-11-012-0/+12
| | | |_|_|/ | | |/| | |