For the foreseeable future I will be adding nodejs functionality on workers separate from where nodepod booted.
For example, VSCode's multi-file search occurs on its own worker, and I am currently just messaging from this worker back to the main thread where nodepod "lives" for file searching, it works but its manual messaging.
I see in the docs there is some zero-copy functionality for VFS, should I look into this instead? If so, can you comment on the limitations like 16,000 files, etc?
It would be cool long term if nodepod had a client with a GetExisting method, and I specify some id and nodepod client just hooks into the existing instance that booted on another thread, and I just use these thin clients across a bunch of threads
For the foreseeable future I will be adding nodejs functionality on workers separate from where nodepod booted.
For example, VSCode's multi-file search occurs on its own worker, and I am currently just messaging from this worker back to the main thread where nodepod "lives" for file searching, it works but its manual messaging.
I see in the docs there is some zero-copy functionality for VFS, should I look into this instead? If so, can you comment on the limitations like 16,000 files, etc?
It would be cool long term if nodepod had a client with a GetExisting method, and I specify some id and nodepod client just hooks into the existing instance that booted on another thread, and I just use these thin clients across a bunch of threads