Concept Flow - Low-level cache API
Start
Call cache.set(key, value, timeout)
Store value in cache with key
Call cache.get(key)
Retrieve value if exists and not expired
Return value or None
Call cache.delete(key)
Remove key from cache
End
This flow shows how Django's low-level cache API stores, retrieves, and deletes cached data using keys.