Re: [Interest] QtHttpServer Asynchronous Request Processing

2023-01-10 Thread Daniel
Hi Ievgenii, thanks for your answer! Well, that's interesting. Both samples were executed in the main thread, without any modification of the standard threadpool. I did several tests and the lambdas in the first example were never executed in parallel. However, since I have to handle anyway arbit

Re: [Interest] QtHttpServer Asynchronous Request Processing

2023-01-10 Thread Ievgenii Meshcheriakov via Interest
Hi, I've tried to reproduce this on Windows and Linux and I cannot. In both cases the requests are executed in parallel. One thing that comes to mind is that a shared thread pool is used to execute request, so if it has only one thread then requests will be run sequentially. But this will not ex