How does "await" works with parse?

TLDR: With async/await many users can run the same cloud function simultaneously

Await is not a parse feature. Async/await function run asynchronously in JS, si it do not block the event loop and allow to parallelize operations.

Await act as a .then in Js Promise.
you can use await as much as you want, it will not block response or parallel users :slight_smile:

info here: async function - JavaScript | MDN

1 Like