Concept Flow - Per-view caching
User sends HTTP request
Django receives request
Check cache for view response
Return cached
Send response
Send response
The flow shows how Django checks if a cached response exists for a view before running it, returning cached data if found, or running and caching the view output if not.