14 Aug
2024
14 Aug
'24
6:30 p.m.
The third option I'm considering is using fibers. I like this option in principle because the resulting code is very clean and looks like normal synchronous code. However, I haven't seen many big examples/projects using Boost.Fiber with Boost.Asio. Is this something people are doing out in the wild? Does Asio support Fibers well?
Here's a complete web server that uses Asio, Beast, Redis, MySQL and asio::spawn. https://github.com/anarthal/servertech-chat/ I'm considering migrating this to C++20 coroutines. Regards, Ruben.