You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generally speaking, the above requirements mean that any transaction which has an overlapping scope with a read/write transaction and which was created after that read/write transaction, can’t run in parallel with that read/write transaction.(Mentioned in W3C)
And my question is :
How does indexedDB do to suspend the remaining transactions when multiple read/write transactions are opened at the same time? Is it done with the browser's Event Loop?
The text was updated successfully, but these errors were encountered:
Ideally, the spec would define transaction scheduling e.g. as a parallel queue. The steps are not run synchronously with any agent's (document's/worker's) event queue.
PRs that firm up transaction behavior here would be welcome.
Generally speaking, the above requirements mean that any transaction which has an overlapping scope with a read/write transaction and which was created after that read/write transaction, can’t run in parallel with that read/write transaction.(Mentioned in W3C)
And my question is :
How does indexedDB do to suspend the remaining transactions when multiple read/write transactions are opened at the same time? Is it done with the browser's Event Loop?
The text was updated successfully, but these errors were encountered: