Skip to content

fs: Performance Enhancement: Concurrent Execution of Async Tasks with `Promise.all`

Hello,

This pull request introduces a performance improvement by executing asynchronous tasks concurrently using Promise.all. This enhancement aims to optimize the utilization of hardware resources effectively.

This PR draws inspiration from a similar one (though not identical) in the Deno runtime, where the execution time was reduced by 85% through concurrent processing. For reference, please see: https://github.com/denoland/deno_std/pull/3363.

Additionally, a comparable pull request has been made in the Deno JavaScript runtime, as demonstrated in: https://github.com/denoland/deno_std/pull/3683.

Thank you for considering these enhancements.

Merge request reports

Loading