Odd slowdowns with concurrent HTTPS requests / HTTP Client Concurrency

I had a similar experience and the solution was to force hackney to use the default pool, which I believe allowed my app to reuse connections and not have to redo the handshake for each request. I documented it here: http://coderstocks.blogspot.com/2016/01/sqs-throughput-over-https-with-elixir.html

Hopefully that is helpful for you.

3 Likes