10-22-2014 17:25
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

10-22-2014 17:25
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Our servers currently make ~900k calls to your api each day. Yesterday I deployed a code change to switch the protocol to https. We don't have any errors, but I noticed our throughput fell significantly after the change. Wireshark shows that we're recreating the SSL connection on each request, which creates significant overhead for your servers and ours. I imagine this will be magnified in two weeks when you require all clients to use SSL.
Does your API support connection reuse? Should we be using that?

- Labels:
-
Subscriptions API
10-22-2014 17:29
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

SunsetRunner
10-22-2014 17:29
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Yes we do. If you care about the performance, then absolutely you should make use of it.

10-22-2014 17:34
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

10-22-2014 17:34
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Thanks for the quick reply!
I can have one of our developers make the change tomorrow. Do you have example client code using the ruby oauth gem or Faraday?

