summaryrefslogtreecommitdiff
path: root/redis/client.py
Commit message (Expand)AuthorAgeFilesLines
* Fix broken asynchronous check in flushdb and flushallAndy McCurdy2018-11-151-2/+2
* fix missing arg in exception message. thanks Keith AinsworthAndy McCurdy2018-11-141-2/+4
* saner handling of decr/incr vs decrby/incrbyAndy McCurdy2018-11-141-8/+6
* Merge pull request #578 from derek-dchu/masterAndy McCurdy2018-11-141-0/+10
|\
| * add 'decrby' methodDerek Hu2015-01-071-0/+10
* | Merge pull request #925 from itamarhaber/sort_issueAndy McCurdy2018-11-141-1/+1
|\ \
| * | Fixes a KeyError in empty `options` dict at sort's returnItamar Haber2017-11-131-1/+1
* | | Properly decode cluster info in callbacksAndy McCurdy2018-11-141-0/+2
* | | Merge pull request #1017 from u2mejc/issue-1016Andy McCurdy2018-11-141-1/+1
|\ \ \
| * | | Enforce ssl_cert_reqs='required' by defaultJustin Clark2018-08-071-1/+1
| |/ /
* | | EXISTS now accepts multiple keys. return the number of existing keysAndy McCurdy2018-11-141-8/+8
* | | add nx, xx, ch and incr options to ZADDAndy McCurdy2018-11-141-3/+44
* | | update shutdown error to a DataErrorAndy McCurdy2018-11-141-1/+1
* | | Merge branch 'v3-breaking-changes'Andy McCurdy2018-11-141-205/+79
|\ \ \
| * | | only support LuaLock going forwardAndy McCurdy2018-11-141-11/+2
| * | | all commands should be able to accept bytes or strings for key namesAndy McCurdy2018-11-141-18/+6
| * | | list_or_args should always create a new listAndy McCurdy2018-11-141-1/+3
| * | | raise DataError instead of RedisError for user input problemsAndy McCurdy2018-11-141-47/+47
| * | | fix order of zincrby args to match redis serverAndy McCurdy2018-11-141-1/+1
| * | | remove legacy Redis classAndy McCurdy2018-11-131-97/+6
| * | | force mapping to be a single dict object on MSET, MSETNX and ZADDAndy McCurdy2018-11-131-31/+15
* | | | Merge pull request #1042 from dwilliams-kenzan/masterAndy McCurdy2018-11-141-3/+15
|\ \ \ \ | |/ / / |/| | |
| * | | Following the 80 column limit.Daniel Williams2018-11-141-3/+5
| * | | Updating based on feedback from the pull request.Daniel Williams2018-11-141-5/+12
| * | | Changed to a boolean argument.Daniel Williams2018-10-191-3/+3
| * | | Adding an option to the SHUTDOWN command so NOSAVE can be passed in.Daniel Williams2018-10-191-2/+5
| |/ /
* | | Merge pull request #1064 from andymccurdy/migrateAndy McCurdy2018-11-131-0/+35
|\ \ \
| * | | Token.get_token for literalsmigrateAndy McCurdy2018-11-121-4/+4
| * | | add migrate commandAndy McCurdy2018-11-121-0/+35
* | | | Merge pull request #1057 from RoeyPrat/roey-client_pauseAndy McCurdy2018-11-131-1/+24
|\ \ \ \
| * | | | pep8 fixesAndy McCurdy2018-11-131-3/+4
| * | | | Normalizes type to lowercase in client_list()Itamar Haber2018-11-131-1/+1
| * | | | Implements type argument in client_listRoey Prat2018-11-071-4/+13
| * | | | Implements CLIENT PAUSERoey Prat2018-11-071-0/+13
* | | | | Merge pull request #1019 from krishan-carbon/patch-1Andy McCurdy2018-11-131-1/+15
|\ \ \ \ \
| * | | | | .Krishan Patel2018-10-281-0/+1
| * | | | | .Krishan Patel2018-10-281-2/+2
| * | | | | Added testKrishan Patel2018-08-131-1/+1
| * | | | | Allow pings in PubSubKrishan Patel2018-08-131-0/+13
| | |_|/ / | |/| | |
* | | | | Adds the memory_usage and memory_purge commandsItamar Haber2018-11-091-0/+20
| |_|/ / |/| | |
* | | | Renames sync to asynchronousItamar Haber2018-11-081-8/+8
* | | | Adds `sync` flag to flushdb and flushallItamar Haber2018-11-081-6/+22
* | | | added better overflow control and lifecycle mgmt to bitfieldsAndy McCurdy2018-11-071-14/+34
* | | | support for the bitfield command thanks to Charles LeiferAndy McCurdy2018-11-061-0/+84
| |/ / |/| |
* | | Merge branch 'pr/916' into drop26Andy McCurdy2018-11-061-24/+20
|\ \ \
| * | | Use timedelta.total_seconds(); available since Python 2.7Jon Dufresne2018-11-031-10/+7
| * | | Use unicode literals throughout projectJon Dufresne2018-11-031-7/+7
| * | | Prefer dict comprehension over dict(<generator>)Jon Dufresne2018-11-031-1/+1
| * | | Pass generators to dict() instead of coercing to a listJon Dufresne2018-11-031-5/+5
| * | | Use set literals instead of set([...])Jon Dufresne2018-11-031-1/+1