Django - Caching
Examine this Django cache code snippet:
What will be the value of
cache.set('session', 'active')
cache.delete('session')
value = cache.get('session', default='none')What will be the value of
value after execution?