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