Django - Caching
What will be the output of this code snippet?
from django.core.cache import cache
cache.set('count', 5)
value = cache.get('count')
print(value)