This is my flow: 1. Request A inserts data into a table. 2. Request A redirects the client to make

This is my flow:

  1. Request A inserts data into a table.
  2. Request A redirects the client to make another requests.
  3. Request B reads that data back that was inserted in request A.
Can I get away with using 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?
Was this page helpful?