django-redis-cache icon indicating copy to clipboard operation
django-redis-cache copied to clipboard

A Redis cache backend for django

Results 74 django-redis-cache issues
Sort by recently updated
recently updated
newest added

Issue is as titled—sometimes (notably when under heavy load), `get_or_set` returns None. I believe the issue is in the if statement [here](https://github.com/sebleier/django-redis-cache/blob/7eb7d637c678227651d786d61b2d856e5a34312a/redis_cache/backends/base.py#L415) (redis_cache/backends/base.py#L415) It seems that if the value is...

Upgrade redis-py to the latest version.

``` CACHES = { "default": { "BACKEND": "redis_cache.RedisCache", "LOCATION": [ env('CACHE_MASTER_URL'), env('CACHE_SLAVE_URL'), ], "OPTIONS": { 'DB': 1, "PASSWORD": env('CACHE_PASSWORD'), 'MASTER_CACHE': env('CACHE_MASTER_URL') } } } ``` Stack Trace: ``` ----> 1...

[redis-py](https://github.com/redis/redis-py) 4.0.0 was released Nov 15, 2021, now at 4.2.2, but I can't upgrade it because this module requires

Is TLS supported? I don't see any documentation for how to configure it. If I understand correctly, `redis-py` supports TLS (https://github.com/andymccurdy/redis-py/pull/446).

During routine dependency maintenance, my dependency-check report flagged this module as having two high-priority security vulnerabilities. The vulnerabilities were noted were [this one](https://nvd.nist.gov/vuln/search/results?form_type=Advanced&results_type=overview&search_type=all&cpe_vendor=cpe%3A%2F%3Aredis&cpe_product=cpe%3A%2F%3Aredis%3Aredis&cpe_version=cpe%3A%2F%3Aredis%3Aredis%3A3.0.0) and [this one](https://nvd.nist.gov/vuln/search/results?form_type=Advanced&results_type=overview&search_type=all&cpe_vendor=cpe%3A%2F%3Adjango_project&cpe_product=cpe%3A%2F%3Adjango_project%3Adjango&cpe_version=cpe%3A%2F%3Adjango_project%3Adjango%3A3.0.0). As you can see,...

When I enabled django-redis-cache I got this error: ``` ./manage.py check Traceback (most recent call last): File "./manage.py", line 21, in main() File "./manage.py", line 17, in main execute_from_command_line(sys.argv) File...

It's a pretty bare page now: https://pypi.org/project/django-redis-cache/ ![image](https://user-images.githubusercontent.com/270571/116953363-587ec000-ac8d-11eb-8e68-6e76aaebf1b5.png)

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.3.1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

This adds django 3.0 to the requirements list. Without it listed like this, dependency management tools will think that this version can be installed on older versions of django. In...