|
|
|
|
|
by cpleppert
1909 days ago
|
|
Worth keeping in mind that the implementation they have chosen of stack copying from the heap has a larger performance overhead than something like Go which was designed around green threads/fibers/virtual threads/ etc. from the start. If you can keep your stack size very low in each task then this probably won’t be noticeable if you are doing lots of IO which can trigger wakeups. More of a replacement for an async/await state machine for handling a request than something like a goroutine you could use for everything. I have a feeling lots of existing Java libraries and frameworks won’t work well with it. Will be interesting to see how it plays out. |
|