You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
talex5
changed the title
Add a systhread pool of workers so that e.g. file operations never block the main thread.
Add a systhread pool of workers for eio_posix
Aug 17, 2023
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.The text was updated successfully, but these errors were encountered: