summaryrefslogtreecommitdiff
path: root/redis/commands.py
Commit message (Collapse)AuthorAgeFilesLines
* Added an execute wrapper and tests.Chayim I. Kirshen2021-08-231-3/+5
| | | | The tests ensure that the function is called. Nothing more since we do not currently have enough testing support for sentinel
* Merged new sentinel commands from #835Chayim I. Kirshen2021-08-231-0/+49
| | | | Thanks you @otherpirate for the contribution!
* Migrating commands to a mixin (#1534)Chayim2021-08-181-0/+2995
* Moving redis commands to a mixin This patterns allows for the reuse of these commands across connection types, including modules that are based on this client * splitting sentinel specific commands into the respective mixin