I want to use per-view cache. I know how it's working, but where's the problem? How can I invalidate that cache? I must do it each time database records are changed. There is no info about how to do that:/
|
feedback
|
|
Take a look at this snippet http://djangosnippets.org/snippets/936/. Pass the path(url) of the view to the expire_page function function, every time you want to invalidate the cache. | |||||
feedback
|
|
This is a django snippet I found that might be helpful:
Otherwise this SO question goes into more detail regarding this: Expire a view-cache in Django? | |||
|
feedback
|