I am using Memcache for my Django application.
In Django, developers can use template fragment caching to only cache a section of a template. https://docs.djangoproject.com/en/dev/topics/cache/#template-fragment-caching
I was wondering if there is a way to explicitly change the value of a template fragment cache section say in views.py. For instance, could one use a method akin to cache.set("sidebar", "new value") except for a template fragment cache?
Thank you for your help.