Content pfp
Content
@
0 reply
0 recast
2 reactions

jtgi pfp
jtgi
@jtgi
surprising 10x speed up in throughput with this change: Before: - await promise 1 - await p2 - await p3 - await p4 After: - await [p1, p2] - await [p3, p4] Running node.js. Expected minor speed up. Underestimated cost of context switching.
10 replies
2 recasts
26 reactions

christopher pfp
christopher
@christopher
Promise.all()?
1 reply
0 recast
4 reactions

jtgi pfp
jtgi
@jtgi
yep, didn’t bother cause I thought speed up would be irrelevant. wrong.
1 reply
0 recast
3 reactions