Add hybrid epoll/thread pool async I/O backend (#98)

* Add hybrid epoll/thread pool async I/O backend

* Remove thread pool in favor of epoll AIO backend
This commit is contained in:
2025-10-23 23:09:52 -07:00
committed by GitHub
parent 1500a4f815
commit f2743d05e7
5 changed files with 766 additions and 217 deletions

View File

@@ -24,7 +24,7 @@ namespace detail {
#if WIBO_ENABLE_LIBURING
std::unique_ptr<AsyncIOBackend> createIoUringBackend();
#endif
std::unique_ptr<AsyncIOBackend> createThreadPoolBackend();
std::unique_ptr<AsyncIOBackend> createEpollBackend();
} // namespace detail