django-cache-memoize
django-cache-memoize copied to clipboard
Django utility for a memoization decorator that uses the Django cache framework.
Similar to #60 it is useful to have this metadata around releases
Under very heavy load when the cached version of that page expires or is missing, there may be sufficient concurrency that multiple workers will all attempt to evaluate the target...
Is there a reason there is no `kwargs_rewrite`?
I use Python3.8 with django 3.0.1 and i get the following error unsupported pickle protocol: 5 File "C:\Users\U779\django_projects\8bit-apps\venv\lib\site-packages\cache_memoize\__init__.py", line 131, in inner result = cache.get(cache_key, MARKER) File "C:\Users\U779\django_projects\8bit-apps\venv\lib\site-packages\django\core\cache\backends\db.py", line 51,...
Sometimes we know, that cache state should depend on some external data like `some dependency last update datetime`. It would be nice if `extra` args would be supported so one...
Hello, is there a way to invalidate all cached values for a function versus invalidating the cached value for a given set of arguments?
When packaging a python package for NixOS we prefer to run the tests to make sure our packaging works and we have a smoke test to notice when things go...
Is there any workaround to cache result only if return value is not `None`
Needed for debian packaging