We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any hint on how to share a big JS Object in memory amongst different threads/workers?
I have a huge JS Object and each worker is reading from said Object to later perform CPU intensive task.
I can't find any solution in NodeJS, because any multi-thread NPM solution around seems to clone the worker function parameters.
The text was updated successfully, but these errors were encountered:
SharedArrayBuffer should allow you to read and write to the same object.
SharedArrayBuffer
Sorry, something went wrong.
No branches or pull requests
Any hint on how to share a big JS Object in memory amongst different threads/workers?
I have a huge JS Object and each worker is reading from said Object to later perform CPU intensive task.
I can't find any solution in NodeJS, because any multi-thread NPM solution around seems to clone the worker function parameters.
The text was updated successfully, but these errors were encountered: