Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Erlang HTTP Client: inets or ibrowse or ...?

I am working with Erlang and need to make efficient HTTP requests.

What is the current "standard" HTTP Client for Erlang/OTP?

Is it inets or ibrowse or something else entirely?

Any advice or pointers appreciated.

like image 597
Toby Hede Avatar asked Mar 06 '11 04:03

Toby Hede


1 Answers

We're using lhttpc, which works well for our use cases, but we haven't done extensive benchmarks of the alternatives. The "standard" is, of course, the one that ships with OTP (httpc from inets).

like image 123
YOUR ARGUMENT IS VALID Avatar answered Nov 16 '22 11:11

YOUR ARGUMENT IS VALID