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
Using transferList in Worker.postMessage() will reduce memory usage and probably boost performance somewhat by allowing large byte arrays (which we deal with a lot) to be transferred between the worker and the main thread rather than copied. https://developer.mozilla.org/en-US/docs/Web/API/Worker/postMessage
The text was updated successfully, but these errors were encountered:
Using
transferList
inWorker.postMessage()
will reduce memory usage and probably boost performance somewhat by allowing large byte arrays (which we deal with a lot) to be transferred between the worker and the main thread rather than copied.https://developer.mozilla.org/en-US/docs/Web/API/Worker/postMessage
The text was updated successfully, but these errors were encountered: