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
Replacing child_process with worker_threads should yield better performance and a smaller memory footprint in general. Additionally, as images being serialized/deserialized when passed to child processes appears to be the major bottleneck on the Node.js version, so this change is likely to resolve as worker_threads uses structuredClone.
The text was updated successfully, but these errors were encountered:
Replacing
child_process
withworker_threads
should yield better performance and a smaller memory footprint in general. Additionally, as images being serialized/deserialized when passed to child processes appears to be the major bottleneck on the Node.js version, so this change is likely to resolve asworker_threads
usesstructuredClone
.The text was updated successfully, but these errors were encountered: