HTTP connection reuse/pooling (guidance)

Hello,

Apologies for high level question, looking to get bit more information and guidance in the right direction.
I'd like to add connection reuse/pooling to the web server, and I'm looking for place to start this.

One obvious thing that pops out is split the incoming request handler and the proxy request handler to separate threads and have communication between them.

The proxy thread should take care of the backend connection handling, and the two would be talking via mpsc channel..

That's my current thought process, based on limited experience.
Any links to other projects would be appreciated!

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.