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
{{ message }}
This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
These can be implemented in pure hack, however given limitations of epoll, we currently do async IO in background threads - switching threads every time we go through the loop has a fair bit of overhead. A native awaitable could run the whole lot in a worker thread, and only re-enter the hack code once the entire operation has failed or is finished.
This is not needed for completeness, just a performance optimization.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
e.g. writeAllAsync, copying between FDs
These can be implemented in pure hack, however given limitations of epoll, we currently do async IO in background threads - switching threads every time we go through the loop has a fair bit of overhead. A native awaitable could run the whole lot in a worker thread, and only re-enter the hack code once the entire operation has failed or is finished.
This is not needed for completeness, just a performance optimization.
The text was updated successfully, but these errors were encountered: