I have a page template set up with django template fragment cache tags like so:
<header>
{% cache 900 page_heading request.get_host request.get_full_path request.cache_flush %}
<h1>{% block page_heading %}{% endblock %}</h1>
{% endcache %}
{% cache 900 page_header request.get_host request.get_full_path request.user.username request.cache_flush %}
{% block page_header %}{% endblock %}
{% endcache %}
</header>
{% cache 900 page_body request.get_host request.get_full_path request.cache_flush %}
{% block page_body %}{% endblock %}
{% endcache %}
{% cache 5000 page_footer request.get_host %}
<footer>
{% block page_footer %}{% endblock %}
</footer>
{% endcache %}
On our production server, at seemingly inconsistent times, we get a phenomenon whereas the page_heading, page_header & page_body will sometime load 'blank' while page_footer still persists with valid content.
Running under memcached, it takes service memcached restart and a refresh to solve the issue, refreshing each cache and starting fresh.
A thought is to have the cache expiry time set to be the same for each fragment, perhaps this is the cause? We're going to try that, and will report back, however, is there a reason for this otherwise?
How could we debug this for sure?