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

A Django `cache_page` decorator on steroids.

Results 9 django-fancy-cache issues
Sort by recently updated
recently updated
newest added

I'm starting to see frequent race conditions when using `find_urls` with `purge=True` when there is no existing cache entry. The mechanism is as follows: | Request A (POST object Z)...

I haven't been able to fully research this as it's quite complex and I'm not an expert on caching headers, but plan to in the future and want to write...

PyPy tests are flaky so we commented them out. Chances are this project works in PyPy, but until we have a maintainer for PyPy it is simply not included in...

User Henri Witteveen [reports](http://www.peterbe.com/plog/django-fancy-cache#cef2e20) that his prefixer function isn't being called with the same parameters as the view is.

I have spent days trying to do granular invalidation using django built-in cache, there were no way to do it, This package was perfect to achieve it. Why don't you...

It would be very useful to have a setting like `FANCY_CLEAR_CACHE_ON_MODEL_ADMIN_SAVE = True|False` or `FANCY_UPDATE_CACHE_ON_MODEL_ADMIN_SAVE = True|False` to automatically clear or update the cache when saving any object using the...

As of Django 1.7 (to be out soon), setting the cache timeout to `None` means "never expire." In the fancy cache `middleware.py`, however, boolean checks against the timeout are done,...

Got any hints on how django-fancy-cache could be used to cache views without breaking the csrftoken? The issue is that you could just ignore csrftoken cookie [like this](https://djangosnippets.org/snippets/1772/), but then...

The main problem I have with most caching methods is the first request. My experience on services like Heroku and other virtualized databases is that 'some' queries/pages can be slower...