Content
@
0 reply
0 recast
2 reactions
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
MajorTom327
@majortom327.eth
Go on Promise.all, Promise.allSettled Bluebird is good too for handling promises And in remix-utils for remix, you have the awesome “promiseHash” If you have one that is dependent of a previous, but not all dependent on previous, a combo of Promise.all and .then on the needed one could be a good idea
0 reply
0 recast
0 reaction