Previously, I had set up a cached chunk of HTML in my Django template as follows.
{% load cache %}
{% cache 10000 courseTable %} <!-- Cached HTML --> {% endcache %}
Now, I have updated this cached content and want to refresh it. I tried changing the time to no avail:
{% load cache %}
{% cache 0 courseTable %} <!-- Updated Cached HTML --> {% endcache %}
In this case, the page still displays the old cached HTML.
I also tried removing the template tags associated with caching and reinserting them. However, in this case, the content just reverts to the originally cached content after I reinsert the cache template tags.
What can I do? I do not want to wait about 2 hours to reload my cache.