DiamondLightSource / daq-config-server

For storing beamline-specific parameters and constants, feature flags etc.
Apache License 2.0
1 stars 0 forks source link

Client should keep the connection open for better performance #40

Closed rtuck99 closed 1 month ago

rtuck99 commented 2 months ago

The client opens and closes the connection on every request, which if we need to perform multiple requests, can be significant especially if HTTPS is used or if when we add authentication the client needs to re-authenticate.

dperl-dls commented 2 months ago

we probably want to move to something like https://requests.readthedocs.io/en/latest/ anyway