Sick of rewriting Python prototypes in C++. Any sane C++ web frameworks?

Posted by ExtremeMysterious603@reddit | ExperiencedDevs | View on Reddit | 61 comments

This is a constant architectural headache. We have these IO-bound microservices. We start by slapping them together with FastAPI or Flask just to validate a POC. Then the load grows, Python inevitably starts to choke, and we spend weeks porting everything to C++ using stuff like Boost.Asio or Pistache

How are you guys handling this? Does a C++ framework even exist where you can throw together a CRUD app with a DB in a day without drowning in miles of boilerplate and callback hell?