django-nginx-memcache icon indicating copy to clipboard operation
django-nginx-memcache copied to clipboard

Cache Django views so they can be served directly from Nginx (using Memcache/AWS Elasticache). Forked from original project to include support for key-generation based on whole URI, not just the path...

Results 3 django-nginx-memcache issues
Sort by recently updated
recently updated
newest added

Hi, As I started talking in the issue #5, it would be great to be able to configure the cache_key encryptation algorythm and the page version. This way I can...

I have a URL like this that needs to be cached "/search/快递/" - i.e. Chinese characters in the URL. It causes a UnicodeEncodeError here: https://github.com/torchbox/django-nginx-memcache/blob/master/nginx_memcache/cache.py#L80-L94 It seems hashlib.md5 can't handle...

Hi, I had my own nginx-memcache application doing something very similar your are doing. One thing I'm not doing is to set md5 cache, I used the string composition as...