I want to run asyncronous tasks of sending requests to a target url, and I want to do it fatser by implementing multithreading into the program.
How can I make threads sending the asyncronous requests use one async event loop between them ?
Is this the best way to make faster I/O operations (using thread pool would introdue some overhead because the number of threads to be used may vary for each execution) ?
For the request information I’m using a queue.
I had issues working with multiple event loops (each thread creates its own) when I ran the code.