I set the local-memory cache "message" as shown below:
from django.core.cache import cache
cache.set("message", "success", 300)
Then, I tried to display it in the Django Template "index.html" as shown below:
# "index.html"
{{ cache.get.message }}
But, "success" is not displayed.
So, are there any ways to display the local-memory cache in Django Templates?