How to clear the whole cache when using django’s page_cache decorator?
I’ve had this problem with an SQLite database cache – the clear() method doesn’t clear the cache although it works fine with a MySQL database cache. It seems that a SQLite cache needs a call to django.db.transation.commit_unless_managed() after the DELETE from [table] statement is run. I have been using multiple caches since before official support … Read more