summaryrefslogtreecommitdiff
path: root/redis
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Fixed PEP 8 violations introduced in previous commitsAlex Grönholm2012-08-073-5/+9
| | | | |
* | | | | Fixed compatibility issue with Python 2.5 and 2.6 introduced in theAlex Grönholm2012-08-071-2/+2
| | | | | | | | | | | | | | | previous commit
* | | | | Fixed Python 3.2+ compatibilityAlex Grönholm2012-08-074-40/+101
| | | | |
* | | | | Cleaned up code for PEP 8 complianceAlex Grönholm2012-08-065-51/+90
| | | | |
* | | | | version bump2.6.0andy2012-07-171-1/+1
| | | | |
* | | | | Changed (p)subscribe and (p)unsubscribe to no longer return confirmation of ↵andy2012-07-171-3/+10
|/ / / / | | | | | | | | | | | | subscirption. These messages should be consumed in listen(). Fixes #254, #255, #233, #232, and #176. whew.
* | | | expire() and setex() now accept timedelta objects.Jon Parise2012-06-261-5/+16
|/ / / | | | | | | | | | This mimics the datetime support provided by `expireat()`.
* | | added GETRANGE supportJean-Philippe CARUANA2012-06-141-0/+7
| | |
* | | Merge pull request #250 from youngking/masterAndy McCurdy2012-06-101-1/+1
|\ \ \ | | | | | | | | score_cast_func doesn't work with desc condiction
| * | | fix score_cast_func doesn't work with desc condictionYoung King2012-06-081-1/+1
| | | |
* | | | Merge remote-tracking branch 'encoding/2.4.11-fix' into encodingandy2012-06-102-13/+30
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Conflicts: redis/connection.py
| * | | Have PythonParser handle result encoding similarly to hiredis.Reader.Frankie Dintino2012-02-081-5/+11
| | | | | | | | | | | | | | | | | | | | If the connection encoding is set to utf-8, pass the socket read results through decode()
| * | | Pass the connection encoding to hiredis.ReaderFrankie Dintino2012-02-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | HiredisParser was not previously passing the character encoding to the hiredis.Reader constructor from redis.connection.Connection (the default there is 'utf-8').
| * | | Added unit tests for unicode handling in PythonParser and HiredisParserFrankie Dintino2012-02-081-2/+3
| | | |
* | | | 2.4.132.4.13andy2012-05-181-1/+1
| | | |
* | | | Merge branch 'from_url' of https://github.com/kennethreitz/redis-py into ↵andy2012-05-182-1/+33
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | kennethreitz-from_url Conflicts: redis/__init__.py
| * | | | assert url.schemeKenneth Reitz2012-05-181-1/+5
| | | | |
| * | | | redis.from_urlKenneth Reitz2012-05-182-1/+30
| | | | |
* | | | | Made redis-py work with IronPythonGil Tayar2012-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Open socket connection with mode='rb' instead of 'r'. From Python documentation: ...when opening a binary file, you should append 'b' to the mode value to open the file in binary mode, which will improve portability. (Appending 'b' is useful even on systems that don’t treat binary and text files differently, where it serves as documentation.)
* | | | | 2.4.12, redis-py is now fork-safe2.4.12andy2012-04-271-1/+1
| | | | |
* | | | | Fix re-used connection errors after fork().Josiah Carlson2012-04-111-2/+14
| | | | |
* | | | | Allow empty watches in Redis.transaction()Alexander Schepanovski2012-03-031-1/+2
| |_|/ / |/| | |
* | | | allow hmget to accept *args or a list of keysandy2012-02-111-17/+18
| |/ / |/| |
* | | version bump2.4.11andy2012-01-131-1/+1
| | |
* | | fix for #217 to make the INFO command parsing more tolerantandy2012-01-131-1/+3
| | |
* | | Raise an authentication error if an invalid password is suppliedandy2011-11-071-2/+3
| | |
* | | HiredisParser raises a RedisError if Hiredis is unavailableandy2011-11-071-4/+19
| | |
* | | Releasing 2.4.102.4.10andy2011-10-281-1/+1
| | |
* | | implemented the OBJECT command. Fix for #137andy2011-10-281-5/+16
| | |
* | | pep8andy2011-10-251-1/+0
| | |
* | | should .close() the bufferandy2011-10-241-7/+10
| | |
* | | Limit the maximum bytes read from the PythonParser. Fix for #205.andy2011-10-241-2/+24
| | |
* | | Fix spacing from DEBUG OBJECT pull request.andy2011-10-241-15/+18
| | |
* | | Merge branch 'master' of github.com:andymccurdy/redis-pyandy2011-10-211-0/+19
|\ \ \
| * \ \ Merge pull request #204 from smanek/masterAndy McCurdy2011-10-211-0/+19
| |\ \ \ | | | | | | | | | | Add support for DEBUG OBJECT command
| | * | | add a debug_object command - so we can get a key's size (among other things)Shaneal Manek2011-10-131-0/+19
| | | | |
* | | | | keep command names alphabetizedandy2011-10-141-3/+3
|/ / / /
* | | | Added __del__ methods for classes that hold on to resources that need to be ↵andy2011-10-142-3/+43
|/ / / | | | | | | | | | cleaned up. This should prevent resource leakage when these objects leave scope due to misuse or unhandled exceptions.
* | | added the ECHO command for completenessandy2011-10-101-0/+4
| | |
* | | manually reconnect the connection in the PubSub class. This avoids blowing ↵andy2011-10-101-0/+3
| | | | | | | | | | | | out the stack. Fixes #179 and #195.
* | | TTL is StrictRedis returns -1 rather than None for keys with no expiration. ↵andy2011-10-101-1/+8
| | | | | | | | | | | | Redis remains unchanged.
* | | Merge branch 'master' of github.com:andymccurdy/redis-pyandy2011-10-102-3/+5
|\ \ \ | | |/ | |/|
| * | Merge pull request #175 from strongh/masterAndy McCurdy2011-10-061-3/+3
| |\ \ | | | | | | | | ZADD and SADD return integers
| | * | SADD also returns intHomer Strong2011-08-031-2/+2
| | | |
| | * | ZADD returns int, instead of boolHomer Strong2011-08-031-3/+3
| | | |
| * | | Raise ConnectionError if the reader has been closed under us. ThisOvidiu Predescu2011-08-301-0/+2
| | | | | | | | | | | | | | | | | | | | happens if someone calls the disconnect method. This matches the same behavior as in PythonParser.
* | | | anal syntax tweakandy2011-08-221-1/+1
|/ / /
* | | Remove documentation reference to timezones for Locks. As Unix time is used, ↵nicholasknight2011-08-151-2/+2
|/ / | | | | | | timezone should be irrelevant.
* | StrictRedis gets it's own Pipeline class. Fix for #174.andy2011-08-021-4/+26
| |
* | Merge branch 'master' of github.com:andymccurdy/redis-pyandy2011-08-011-3/+1
|\ \