I have a route to accept request from user and return data to the user. There are the step
- User send request to my app
Read
data from databaseUpdate
my database- Return data to user
I want step 3 and step 4 above happen at the same time so the user will not be waiting for the update
operation. How can I make this?