Concept Flow - Why background processing improves performance
User sends request
Main app handles request
Dispatch job to background queue
Respond to user quickly
Background worker processes job
Job completes without blocking user
The app quickly responds to the user by sending heavy tasks to a background queue, which a worker processes later, improving user experience.