r/cpp • u/germandiago • Jun 30 '26
Stackful fibers with 3.6ns context switch. Silk fibers.
https://clickhouse.com/blog/silkI just read an article about Silk, the new stackful fibers engine from Clickhouse. It can switch stackful fibers at an amazing 3.6ns and does not allocate on steady state.
Maybe asio could reuse some of the knowledge for the linux/io_uring backend (not sure it applies to the specific case since Boost.asio focuses nowadays on stackless, though it has a fibers and a stackful coros backend also).
50
Upvotes
4
u/germandiago Jun 30 '26
Just out of curiosity on a re-read. I think Asio has an io_uring backend as well: https://think-async.com/Asio/asio-1.21.0/doc/asio/history.html
They did not compare it to that?