Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | Do not discard pipeline unless in multi. | Pete Aykroyd | 2013-03-01 | 1 | -1/+2 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes an error that occurred if you exec'd a pipeline on which you hadn't called `multi()`. When an error happened, the code was automatically calling discard. This causes an a 'DISCARD without MULTI' error from redis which obscures the actual cause of the error. | |||||
* | | | | | changelog | andy | 2013-02-25 | 1 | -0/+2 | |
| | | | | | ||||||
* | | | | | fix for #322 | andy | 2013-02-25 | 2 | -5/+8 | |
| | | | | | ||||||
* | | | | | Merge pull request #320 from myusuf3/master | Andy McCurdy | 2013-02-11 | 7 | -0/+608 | |
|\ \ \ \ \ | | | | | | | | | | | | | Initial Documentation Layout | |||||
| * | | | | | adding docs structure and updating .gitignore file | Mahdi Yusuf | 2013-02-08 | 7 | -0/+608 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #316 from ronniekk/master | Andy McCurdy | 2013-01-25 | 2 | -6/+6 | |
|\ \ \ \ \ | | | | | | | | | | | | | Change callback for SREM command to 'int'. | |||||
| * | | | | | Switched callback for SREM from bool to int. | Ronnie Kolehmainen | 2013-01-25 | 2 | -6/+6 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #315 from bitterb/patch-1 | Andy McCurdy | 2013-01-21 | 1 | -1/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | Fix a typo in README.md | |||||
| * | | | | | Fix a typo in README | bitterb | 2013-01-21 | 1 | -1/+1 | |
|/ / / / / | | | | | | | | | | | This is just a minor fix. Please see the diff. | |||||
* | | | | | Merge pull request #314 from zuhao/patch-1 | Andy McCurdy | 2013-01-20 | 1 | -2/+2 | |
|\ \ \ \ \ | | | | | | | | | | | | | Convert response from bytes to str for Python 3 compatibility | |||||
| * | | | | | Convert response from bytes to str for Python 3 compatibility | Nathan Wan | 2013-01-20 | 1 | -2/+2 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | Convert the responses for BGSAVE and BGREWRITEAOF from bytes to str using nativestr(), just like the others. Otherwise parse_response will return False for these two commands in Python 3. | |||||
* | | | | | Merge pull request #312 from bitterb/add-client-getname-setname | Andy McCurdy | 2013-01-16 | 2 | -0/+37 | |
|\ \ \ \ \ | | | | | | | | | | | | | Add CLIENT GETNAME/SETNAME support | |||||
| * | | | | | Add CLIENT GETNAME/SETNAME support | bitterb | 2013-01-16 | 2 | -0/+37 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #309 from jparise/pipeline-length | Andy McCurdy | 2013-01-06 | 2 | -0/+19 | |
|\ \ \ \ \ | | | | | | | | | | | | | Pipelines now have a __len__() method. | |||||
| * | | | | | Pipelines now have a __len__() method. | Jon Parise | 2013-01-06 | 2 | -0/+19 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | The length of a pipeline is defined as the length of its command stack. This makes it easy to inspect the number of batched commands and to write conditional logic for empty pipelines. | |||||
* | | | | | Merge pull request #305 from saidimu/master | Andy McCurdy | 2012-12-03 | 1 | -1/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | A corrected README on publishing from a PubSub object. | |||||
| * | | | | | Update README.md | saidimu apale | 2012-12-03 | 1 | -1/+1 | |
| | | | | | | ||||||
| * | | | | | Update README.md | saidimu apale | 2012-12-03 | 1 | -1/+1 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #301 from aouyar/master | Andy McCurdy | 2012-11-30 | 1 | -18/+26 | |
|\ \ \ \ \ | | | | | | | | | | | | | Implement support for passing an arg to INFO command | |||||
| * | | | | | Fix parsing of floats in sub dicts in INFO cmd. | Ali Onur Uyar | 2012-11-27 | 1 | -15/+12 | |
| | | | | | | ||||||
| * | | | | | Leave handling of older versions for INFO cmd to the user. | Ali Onur Uyar | 2012-11-27 | 1 | -12/+8 | |
| | | | | | | ||||||
| * | | | | | Implement support for passing an arg to INFO command. | Ali Onur Uyar | 2012-11-17 | 1 | -3/+18 | |
| | |_|/ / | |/| | | | ||||||
* | | | | | Merge pull request #303 from pims/master | Andy McCurdy | 2012-11-26 | 2 | -2/+4 | |
|\ \ \ \ \ | | | | | | | | | | | | | Bitcount start end params raised Exception when equal to 0 | |||||
| * | | | | | Fixed bug in bitcount with start or end param equal to 0 | Tim | 2012-11-25 | 2 | -2/+4 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #302 from imankulov/fix_list_or_args | Andy McCurdy | 2012-11-21 | 5 | -4/+23 | |
|\ \ \ \ \ | | | | | | | | | | | | | Fix in list_or_args() function | |||||
| * | | | | | Improved testing for multiple interpreters support | Roman Imankulov | 2012-11-21 | 3 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added version "3.3" to .travis.yml - Added configuration file to support testing with tox | |||||
| * | | | | | Fixed bug in list_or_args() helper function in python3.x | Roman Imankulov | 2012-11-21 | 2 | -4/+16 | |
|/ / / / / | ||||||
* | | | | | bump to 2.7.22.7.2 | andy | 2012-11-16 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | always raise parse error exceptions in multi/exec pipelines as a result of this | andy | 2012-11-16 | 5 | -18/+21 | |
|/ / / / | | | | | | | | | | | | | server change: https://groups.google.com/forum/?hl=en&fromgroups=#!topic/redis-db/VUiEFT8U8U0 | |||||
* | | | | 2.7.1 version bump, include tests with source dist2.7.1 | andy | 2012-10-08 | 2 | -1/+2 | |
| | | | | ||||||
* | | | | remove the download_url from setup.py so that we can just use pypi | andy | 2012-10-08 | 2 | -3/+1 | |
| | | | | ||||||
* | | | | 2.7.0, version bump2.7.0 | andy | 2012-10-07 | 2 | -2/+3 | |
| | | | | ||||||
* | | | | timedelta.total_seconds is only available in python 2.7+. Fixes #280 | andy | 2012-10-07 | 2 | -5/+6 | |
| | | | | ||||||
* | | | | fix python3 tests | andy | 2012-10-07 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | added CLIENT LIST/CLIENT KILL commands | andy | 2012-10-07 | 2 | -2/+27 | |
| | | | | ||||||
* | | | | hincrbyfloat is 2.6 only | andy | 2012-10-07 | 1 | -0/+7 | |
| | | | | ||||||
* | | | | High precision floating point values are now properly sent to the Redis server. | andy | 2012-10-07 | 3 | -2/+15 | |
| | | | | | | | | | | | | | | | | Fixes #227 | |||||
* | | | | INCRBYFLOAT/HINCRBYFLOAT | andy | 2012-10-07 | 2 | -0/+25 | |
| | | | | ||||||
* | | | | Merge branch 'master' of github.com:andymccurdy/redis-py | andy | 2012-10-07 | 1 | -0/+14 | |
|\ \ \ \ | ||||||
| * \ \ \ | Merge pull request #273 from uvNikita/master | Andy McCurdy | 2012-10-07 | 1 | -0/+14 | |
| |\ \ \ \ | | | | | | | | | | | | | Added INCRBYFLOAT and HINCRBYFLOAT commands | |||||
| | * | | | | Implemented hincrbyfloat command | Nikita Uvarov | 2012-08-21 | 1 | -1/+7 | |
| | | | | | | ||||||
| | * | | | | Implemented incrbyfloat command | Nikita Uvarov | 2012-08-21 | 1 | -0/+8 | |
| | | | | | | ||||||
* | | | | | | PEXPIRE/PEXPIREAT/PTTL commands | andy | 2012-10-07 | 3 | -22/+71 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #282 from flupke/pexpire | Andy McCurdy | 2012-10-07 | 2 | -0/+29 | |
|\ \ \ \ \ | | | | | | | | | | | | | Added PEXPIRE/PTTL support (redis 2.6.0) | |||||
| * | | | | | added PEXPIRE/PTTL support (redis 2.6.0) | Luper Rouch | 2012-09-12 | 2 | -0/+29 | |
| | |_|/ / | |/| | | | ||||||
* | | | | | Added optional `number` argument to srandmember. Fix for #286 | andy | 2012-10-07 | 3 | -3/+19 | |
| | | | | | ||||||
* | | | | | python3 compat | andy | 2012-10-07 | 1 | -2/+3 | |
| | | | | | ||||||
* | | | | | LUA examples in README | andy | 2012-10-07 | 1 | -3/+64 | |
| | | | | | ||||||
* | | | | | pipelines now raise errors by default. | andy | 2012-10-07 | 3 | -21/+87 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | pass `raise_on_error=False` to `pipeline.execute()` if you prefer the old behavior. | |||||
* | | | | | Merge pull request #279 from pims/master | Andy McCurdy | 2012-10-07 | 1 | -2/+10 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Adding test support for LPUSH/RPUSH with multiple arguments for Redis version >=2.4.0 |