-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or requestinvestigateInvestigate if we can do the requestInvestigate if we can do the request
Description
Allow properties to be proxied over and allow synchronized access to them.
-
For numbers we could use shared buffers, fastest way, smallest performance impact.
-
For other data we need to lock the property, send the update to all workers / main, and after that unlock the property access, this will incur a huge performance penalty, especially since the messages for update are part of a queue, even if they are assigned to the worker directly, the worker must finish what it's doing and then process the message, also this must be orchestrated in such a way as to know when all workers / and main have been updated.
For now number properties would be the simplest / fastest choice since we have support in Atomics for that.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestinvestigateInvestigate if we can do the requestInvestigate if we can do the request