eyeonus / Trade-Dangerous

Mozilla Public License 2.0
96 stars 31 forks source link

feat: enable repeat http requests over a single session #160

Closed kfsone closed 2 months ago

kfsone commented 2 months ago

If we need to make multiple requests to a single http server, we have to repeat the overhead of connection-tear up which can be significant for a remote https connection. 'requests' solves for this by letting you create a 'Session' object that uses http keep-alive to send followup requests over an existing connection.

Commiting this separately from changes that make use of it.