redis-py
                                
                                 redis-py copied to clipboard
                                
                                    redis-py copied to clipboard
                            
                            
                            
                        Redis Python client
### Pull Request check-list _Please make sure to review and check all of these items:_ - [ ] Does `$ tox` pass with this change (including linting)? - [ ]...
In the file cluster.py there is a line that logs the args as debug using a fstring. This is a significant bottleneck when sending large messages even when logging is...
I did `pip install redis` However, the commands folder was never downloaded when I check the package. How do I add this?
Proposal: ``` r = redis.Redis(namespace='foobar') ``` Behind-the-scenes, this would prefix every key with `foobar`. For example, if I issued the following command: ``` r.set('abc', 'xyz') ``` It would be equivalent...
### Pull Request check-list _Please make sure to review and check all of these items:_ - [ ] Does `$ tox` pass with this change (including linting)? - [ ]...
For example, let's say i want to search if a date is between of start/end date, i would like to have the ability in a single query.
Version: redis-py version 4.3.4 redis server version 6.2.7 redis sentinel version 6.2.7 redis server Platform: Operating System: Debian GNU/Linux 10 (buster) Kernel: Linux 4.19.0-21-cloud-amd64 Architecture: x86-64 docker: Docker version 20.10.17,...
PR #446 added support for TLS, however it's currently undocumented. I'm trying to add documentation/support for TLS to consumers of redis-py (eg django-redis/django-redis-cache), however this is harder when there isn't...
When I have this: ``` r = redis.Redis() pipe = r.pipeline(transaction=False) pipe.jsonset('foo', '.', {'hello!': 'world'}) ``` I get: `Pipeline object has no attribute 'jsonset'` When I have this: ``` r...
### Pull Request check-list _Please make sure to review and check all of these items:_ - [x] Does `$ tox` pass with this change (including linting)? - [x] Do the...