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
LOG_INFO("Starting C++ HTTP Server on port " + std::to_string(port));
LOG_INFO("Thread pool size: " + std::to_string(thread_pool_size));
httpServer.start(port, thread_pool_size);
httpServer.run(); // this main thread is dedicated to run the io_context event loop(this thread is blocked, while other will keeps accepting new connetions)