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 was archived by the owner on Jun 11, 2026. It is now read-only.
In the current version, we observe a performance degrade on Linux version due to the usage of libaio on async IO handling. It has been a known issue that libaio is not very efficient.
Recently, io_uring is released with Linux kernel 5.1, which advertise to be a high performance aysnc IO library. We should try it and see if we can improve linux version performance by replacing libaio with it.
In the current version, we observe a performance degrade on Linux version due to the usage of
libaioon async IO handling. It has been a known issue thatlibaiois not very efficient.Recently,
io_uringis released with Linux kernel 5.1, which advertise to be a high performance aysnc IO library. We should try it and see if we can improve linux version performance by replacinglibaiowith it.