summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Use Oxford comma properly in getex (#1586)Andrew Chen Wang2021-10-051-1/+1
|
* Fix potential test case typo in test_zadd_gt_lt (#1585)Andrew Chen Wang2021-10-051-1/+1
|
* Implement/test LOLWUT command (#1568)Rajiv Bakulesh Shah2021-10-012-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement/test LOLWUT command https://redis.io/commands/lolwut This is a lot of fun to play with: ```python >>> from redis import Redis >>> redis = Redis() >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⣴⣶⣶⣶⣶⡆ ⣿⣿⣿⣿⣿⡇ ⠹⡿⠟⣿⡿⠃ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⢰⣶⣶⣶⣶⡆ ⢿⣿⣿⣿⣿⠁ ⠸⡿⢿⠿⡿⠃ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⢰⣶⣶⣶⣶⡆ ⣸⣿⣿⣻⣿⡅ ⠿⡿⠻⠿⠿⠁ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> ``` * Add link to LOLWUT command documentation Co-authored-by: Chayim <chayim@users.noreply.github.com> * Skip LOLWUT unit test for Redis < 5.0.0 The `LOLWUT` command was introduced in Redis 5.0.0: https://redis.io/commands/lolwut Co-authored-by: Chayim <chayim@users.noreply.github.com>
* CLIENT REPLY support, available since redis 3.2.0 (#1581)Chayim2021-09-303-0/+38
|
* Auto-reconnect PubSub on `get_message` (#1574)Theron Luhn2021-09-301-1/+4
|
* Fix RST syntax error in README. (#1451)Jan C. Brammer2021-09-301-0/+1
|
* IDLETIME and FREQ support for RESTORE (#1580)Chayim2021-09-302-1/+65
|
* Supporting args with MODULE LOAD (#1579)Chayim2021-09-302-2/+14
| | | Part of #1546
* repalce redislabs with redis (#1575)Guy Korland2021-09-203-3/+3
| | | Rename "Redis Labs" to "Redis" in the README docs
* Updating CHANGES with the latest improvements. (#1569)Chayim2021-09-051-10/+45
| | | Thanks everyone for all your contributions!
* Support for SCRIPT FLUSH with SYNC/ASYNC (#1567)Chayim2021-09-012-3/+29
| | | Part of #1546
* CLIENT LIST fix to allow multiple client_ids (#1563)Chayim2021-09-012-8/+32
| | | | | | | | | * CLIENT LIST fix to allow multiple client_ids Support for CLIENT KILL with the USER filter Part of #1546 * test fix
* Pipeline DISCARD support (#1565)Chayim2021-09-012-1/+33
| | | | | closes #1539 Part of #1546
* fixing timing issues in set pxat test (#1566)Chayim2021-09-011-2/+2
| | | closes #1561
* Adding DELUSER list of users support (#1562)Chayim2021-09-013-2/+26
| | | | | Adding support for ACL help Part of #1546
* Support for CLIENT TRACKINFO (#1560)Chayim2021-09-013-0/+14
| | | Part of #1546
* GEOSEARCH and GEOSEARCHSTORE (#1526)Avital Fine2021-09-013-86/+370
| | | | | | | | | | | | | * GEOSEARCH and GEOSEARCHSTORE * negative test * change georadius_generic to geosearch_generic * add documentations to the functions * add docstring to the parser * farest
* LPUSHX support for list, no API changes (#1559)Chayim2021-09-012-2/+11
| | | Part of #1546
* Adding support for GENPASS bits (#1558)Chayim2021-09-012-3/+24
| | | Part of #1546 commands.
* Support for QUIT (#1557)Chayim2021-09-013-0/+10
| | | Part of #1546
* bgsave schedule support (#1555)Chayim2021-09-012-2/+10
| | | | | bgsave tests Part of #1546
* Support for command count (#1554)Chayim2021-09-013-0/+11
| | | Part of #1546
* Adding EXAT and PXAT (unix time support) support for SET (#1547)Avital Fine2021-09-012-4/+34
| | | | | * set in unix time * update skip version
* xgroup_createconsumer (#1553)Avital Fine2021-08-302-0/+28
|
* Includes slowlog complexity info if available (#1489)Ian Bucad2021-08-292-11/+46
| | | | | | | | | | | | * Return slowlog complexity info if available based on https://github.com/andymccurdy/redis-py/pull/622 * Add tests Copied from https://github.com/andymccurdy/redis-py/pull/622 * address flake E306 * Trigger Build
* Stralgo (#1528)Avital Fine2021-08-293-0/+119
| | | | | | | | | | | | | | | | | * add support to STRALDO command * add tests * skip if version .. * new line * lower case * fix comments * callback * change to get
* #1434 Added support for ZMSCORE new in Redis 6.2 RC (#1437)Jiekun2021-08-293-0/+31
| | | | | | | | | | | | | | | * #1434 Added zmscore command support * #1434 Fixed typo and doc * #1434 Set [] as default value for members arg in zmscore func * #1434 Set None as default value for members arg in zmscore func * #1434 Removed default value for members arg in zmscore func * Fixed flake8 formatting Co-authored-by: jiekun.zhu <jiekun.zhu@shopee.com>
* Support MINID and LIMIT on XADD (#1548)Avital Fine2021-08-292-3/+69
| | | * MINID and LIMIT
* Merged new sentinel commands from #834 (#1550)Chayim2021-08-294-5/+96
| | | | | | | | | * Merged new sentinel commands from #835 Thanks you @otherpirate for the contribution! * Added an execute wrapper and tests. The tests ensure that the function is called. Nothing more since we do not currently have enough testing support for sentinel
* Use Version instead of StrictVersion since distutils is deprecated. (#1552)Karthikeyan Singaravelan2021-08-292-9/+9
|
* Add retry mechanism with backoff (#1494)nbraun-amazon2021-08-186-86/+360
|
* Updating CHANGES to list most recent changes (#1544)Chayim2021-08-181-0/+50
|
* Migrating commands to a mixin (#1534)Chayim2021-08-183-2846/+3007
| | | | | | | * 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
* Zunion (#1522)Avital Fine2021-08-152-1/+31
| | | | | | | | | | | | | | | | | * zinter * change options in _zaggregate * skip for previous versions * add client function * validate the aggregate value * change options to get * add more aggregate tests * add weights guidance
* Adding support for CLIENT LIST with ID (#1505)Chayim2021-08-152-6/+17
|
* MINID and LIMIT support for xtrim (#1508)Chayim2021-08-152-3/+62
|
* implementing the LMOVE and BLMOVE commands (#1504)Chayim2021-08-152-2/+31
|
* Added GET argument to SET command (#1412)Jiekun2021-08-082-3/+37
|
* Fix some typos. (#1496)Binbin2021-08-083-11/+11
|
* xautoclaim (#1529)Avital Fine2021-08-052-1/+94
|
* add idle to xpending (#1523)Avital Fine2021-08-052-14/+74
|
* Add a count parameter to lpop/rpop for redis >= 6.2.0 (#1487)Gal Ben David2021-08-053-7/+41
| | | Co-authored-by: Chayim <chayim@users.noreply.github.com>
* Updating base testing docker to redis 6.2.5 (#1536)Chayim2021-08-052-8/+2
|
* fix getex flaky testsAvital Fine2021-08-051-1/+1
|
* Add trove classifier for Python 3.9 (#1535)Michał Bielawski2021-08-051-0/+1
|
* exclusive gt and lt in zadd (#1533)Chayim2021-08-031-1/+12
| | | | | * exclusive gt and lt in zadd * docs update
* zinter (#1520)Avital Fine2021-08-012-10/+58
| | | | | | | | | | | | | | | | | | | * zinter * change options in _zaggregate * skip for previous versions * flake8 * validate the aggregate value * invalid aggregation * invalid aggregation * change options to get Co-authored-by: Chayim <chayim@users.noreply.github.com>
* Word was repeated in documentation (#1532)Jonathan Herlin2021-07-301-1/+1
| | | Small typo in documentation
* ensuring we adhere to exlusive options for getex (#1531)Chayim2021-07-291-0/+5
|
* zdiff and zdiffstore (#1518)Avital Fine2021-07-292-2/+35
|