Kiner Shah

Results 14 comments of Kiner Shah

I think you need to debug this and find what exactly is causing this delay, some blocking call or some deadlock. Once you have found something, please update with that...

Looks like [reflection](https://en.wikipedia.org/wiki/Reflective_programming).

What kind of client is it? If it's a web app with JS running, you can look online for how to abort/cancel requests online. Example, see [this](https://www.wisdomgeek.com/development/web-development/javascript/how-to-cancel-http-fetch-request/).

Yes, you can use `crow::json::wvalue::object` for this. ``` #include "crow.h" #include #include struct StartEnd { int start, end; }; int main() { std::unordered_map < std::string, StartEnd > m{ {"test1", {10,...