summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge pull request #667 from sirk390/masterAndy McCurdy2015-10-203-0/+28
|\ \ \ \ | |/ / / |/| | | -added zrevrangebylex
| * | | -Add CHANGES message.Christian Bodt2015-10-202-3/+4
| | | | | | | | | | | | | | | | -Rename variables for coherence
| * | | -added zrevrangebylexChristian Bodt2015-10-202-0/+27
|/ / /
* | | satisfy pep8 updatesAndy McCurdy2015-09-282-14/+28
| | |
* | | removed the proactive check in HiredisParser for a line endingAndy McCurdy2015-09-282-9/+4
| | | | | | | | | | | | | | | it turns out just calling into hiredis to test this is faster than doing string compare in Python. fixes #615 and #650.
* | | Merge pull request #657 from harlowja/avoid-needlessAndy McCurdy2015-09-281-1/+2
|\ \ \ | | | | | | | | Avoid needlessly making temporary lists to merge dict(s) together
| * | | Avoid needlessly making temporary lists to merge dict(s) togetherJoshua Harlow2015-09-271-1/+2
|/ / /
* | | Merge pull request #646 from lamby/embedded-string-testAndy McCurdy2015-08-201-1/+1
|\ \ \ | |/ / |/| | Fix tests under Redis 3.x; we can be of an "embedded string" format now.
| * | Fix tests under Redis 3.x; we can be of an "embedded string" format now.Chris Lamb2015-08-181-1/+1
|/ / | | | | | | Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
* | Merge pull request #620 from cwilkes/masterAndy McCurdy2015-05-222-3/+7
|\ \ | | | | | | Support multiple keys for pfcount call
| * | support multiple keys for pfcount callChris Wilkes2015-05-222-3/+7
|/ /
* | Merge pull request #614 from duxiaoyao/masterAndy McCurdy2015-05-042-1/+8
|\ \ | | | | | | Connection.encode complains when value is an object having unicode characters in its printable representation
| * | fix: Connection.encode complains when value is an object having unicode ↵Eric Du2015-05-042-1/+8
|/ / | | | | | | characters in its printable representation
* | Merge pull request #588 from paulkeene/masterAndy McCurdy2015-02-102-18/+34
|\ \ | | | | | | Fix pep8 errors
| * | Fix pep8 errorsPaul Keene2015-02-102-18/+34
|/ /
* | changelogAndy McCurdy2015-02-091-0/+15
| |
* | Handle percent-encoded URLs in parsing codePaul Keene2015-02-093-9/+71
| |
* | Merge pull request #580 from eshizhan/masterAndy McCurdy2015-01-161-0/+9
|\ \ | | | | | | Add WAIT command for Redis synchronous replication
| * | Add WAIT command for Redis synchronous replicationeshizhan2015-01-151-0/+9
|/ / | | | | | | | | ref1: https://github.com/antirez/redis/blob/unstable/src/replication.c#L1783, at SYNCHRONOUS REPLICATION ref2: http://antirez.com/news/66 This command for Redis-3.0.0 and above now.
* | Merge pull request #547 from msabramo/escape_asterisksAndy McCurdy2015-01-031-2/+2
|\ \ | | | | | | Escape 2 asterisks in README.rst
| * | Escape 2 asterisks in README.rstMarc Abramowitz2014-10-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Eliminates 2 warnings when running `rst2html`: $ rst2html.py README.rst README.rst:71: (WARNING/2) Inline emphasis start-string without end-string. README.rst:646: (WARNING/2) Inline emphasis start-string without end-string.
* | | Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2015-01-023-3/+52
|\ \ \ | | |/ | |/|
| * | Merge pull request #567 from harlowja/watch-delayAndy McCurdy2014-12-081-0/+4
| |\ \ | | | | | | | | Allow delay between watch errors
| | * | Allow delay between watch errorsJoshua Harlow2014-12-081-0/+4
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | When a watcher error occurs (due to some key being watched being mutated) the current behavior is to immediately try again. To avoid the thundering herd problem a delay is nice to provide to avoid these situations by introducing a sleep period between these types of failures.
| * | Merge pull request #564 from ↵Andy McCurdy2014-12-053-3/+48
| |\ \ | | |/ | |/| | | | | | | hendrik-cliqz/fix-unicode-conversion-in-exception-handling Fix UnicodeDecodeError in annotate_excpetion
| | * pep8 fixHendrik Muhs2014-12-041-0/+1
| | |
| | * fix pep8Hendrik Muhs2014-12-042-5/+7
| | |
| | * UnicodeDecodeErrorfix unicode encode error when using pipeline in ↵Hendrik Muhs2014-12-043-3/+45
| |/ | | | | | | combination with msgpack and lua
* | better handling of the pub/sub workerthread's stop behaviorAndy McCurdy2015-01-021-20/+29
|/ | | | | properly unsubscribes and cleans up the connection now. also allows callbacks to call thread.stop() without errors.
* should also reinitialize with check_connectionAndy McCurdy2014-09-181-0/+1
|
* Merge pull request #534 from df3n5/masterAndy McCurdy2014-09-181-0/+1
|\ | | | | Sentinel connection pool discarding is_master flag on reset
| * Passing is_master flag through on resetJonathan Frawley2014-09-181-0/+1
|/ | | | | | | - is_master is not passed through when recreating the ConnectionPool. - This was causing unexpected behaviour where we would specifiy that we wish to connect to the slave, but the master would be read from instead.
* Merge pull request #530 from deejay1/string_fixesAndy McCurdy2014-09-031-2/+2
|\ | | | | Fix typos in README
| * Fix typos in READMEŁukasz Jernaś2014-09-031-2/+2
|/
* changelogAndy McCurdy2014-08-151-0/+2
|
* docstringAndy McCurdy2014-08-151-3/+9
|
* Merge branch 'pr/520'Andy McCurdy2014-08-152-6/+7
|\
| * pep8Andy McCurdy2014-08-151-1/+2
| |
| * add optional "timeout" parameter to pubsub.can_readAndy Isaacson2014-08-122-6/+6
| |
* | pep8Andy McCurdy2014-08-141-1/+2
| |
* | 2.10.32.10.3Andy McCurdy2014-08-142-1/+4
| |
* | handle buffer edgecaseJosh Owen2014-08-131-1/+1
|/
* 2.10.22.10.2Andy McCurdy2014-08-112-2/+2
|
* changelogAndy McCurdy2014-08-111-0/+1
|
* fix for pipelines when sending large valuesAndy McCurdy2014-07-281-3/+3
|
* bytearray didn't work with socket.recv_into in python 2.6Andy McCurdy2014-07-211-7/+6
|
* changelogAndy McCurdy2014-07-211-0/+2
|
* cleanup and optimizations to new bytearray codeAndy McCurdy2014-07-211-23/+25
|
* Merge branch 'master' into pr/505Andy McCurdy2014-07-214-18/+95
|\ | | | | | | | | Conflicts: redis/connection.py
| * typoAndy McCurdy2014-07-061-2/+2
| |