-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
From what I learn, this is the flow that triggers each package:
flowchart TD
%% Nodes
A("pinojs"):::green
B("Create Instance"):::orange
C("Received transport"):::blue
D("Use Sonic Boom"):::blue
E("Use Thread Stream"):::blue
%% Edges
A --> B --> C
C -- No --> D
C -- Yes --> E
Using this workflow, we can:
- replace
sonic-boom
forcreateWriteStream
.- It will be slower but will work until we port
sonic-boom
.
- It will be slower but will work until we port
- replace
thread-stream
forstdin: true
on worker.- We will need to re-implement the flush mechanisms, and the communication in theory will be slower since
thread-stream
useSharedArrayBuffer
.
- We will need to re-implement the flush mechanisms, and the communication in theory will be slower since
Metadata
Metadata
Assignees
Labels
No labels