We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the reqwest client seem to be created always for executing a query:
let mut req = Client::new().request(self.method.clone(), &self.url);
This will end up doing a SSL handshake every time. It's better to create it once and reuse it to improve performance.
The text was updated successfully, but these errors were encountered:
Has this been resolved?
Sorry, something went wrong.
Nope - PRs welcome though!
No branches or pull requests
Currently the reqwest client seem to be created always for executing a query:
let mut req = Client::new().request(self.method.clone(), &self.url);
This will end up doing a SSL handshake every time. It's better to create it once and reuse it to improve performance.
The text was updated successfully, but these errors were encountered: