ocaml-multicore / eio

Effects-based direct-style IO for multicore OCaml
Other
540 stars 66 forks source link

Add a systhread pool of workers for eio_posix #607

Closed talex5 closed 6 months ago

talex5 commented 1 year ago

Eio_posix performs file operations (e.g. stat) in their own sys-threads, creating a new thread for each operation. This is quite inefficient; we should use a pool of threads like Lwt does.

talex5 commented 6 months ago

Fixed by #681.