This is my flow: 1. Request A inserts data into a table. 2. Request A redirects the client to make
This is my flow:
- Request A inserts data into a table.
- Request A redirects the client to make another requests.
- Request B reads that data back that was inserted in request A.
waitUntil for the data insertion in request A and immediately redirect to request B, or do I have to wait until the insert is complete before redirecting to request B?

