Which companies are using Erlang, and why?
31–40 of 204 posts
Re: Which companies are using Erlang, and why?
#32WhatsApp used to use Erlang, not anymore. Facebook rewrote it completely in C++. https://www.quora.com/When-did-Facebook-switch-away-from-usi...
This isn't true at all. Major functions of WhatsApp are implemented in Erlang and they're actively worked on. Source: Self. Engineer at FB.
Re: Which companies are using Erlang, and why?
#33At least some of those examples are highly misleading: > There is no better example of Erlang’s reliability than the English National Health Service (NHS). [...] Using Riak (written in Erlang), the NHS has managed 99.999% availability for over five years. From what I could find out, NHS's Spine2 is mostly Python, with "a bit" of Erlang and Javascript. They do use Riak, but they also use Redis, RabbitMQ, Python/Tornad…
Re: Which companies are using Erlang, and why?
#34FWIW, wechat's messaging server is in erlang. In terms of scale, it's probably bigger than whatsapp.
The opposite is true by a non trivial margin. (It doesn’t change the fact that WeChat is massive scale.) https://www.statista.com/statistics/258749/most-popular-glob...
Re: Which companies are using Erlang, and why?
#35Although not in Erlang, Discord uses Elixir which runs on the BEAM VM to much success as well for our real time distributed system as well as VOIP signaling components. Looking back years later - it’s safe to say we wouldn’t have chosen anything else.
Re: Which companies are using Erlang, and why?
#36Re: Which companies are using Erlang, and why?
#37FWIW, wechat's messaging server is in erlang. In terms of scale, it's probably bigger than whatsapp.
Re: Which companies are using Erlang, and why?
#38Although not in Erlang, Discord uses Elixir which runs on the BEAM VM to much success as well for our real time distributed system as well as VOIP signaling components. Looking back years later - it’s safe to say we wouldn’t have chosen anything else.
What was the reason to choose Elixir over Erlang? Just familiarity with the language?
Re: Which companies are using Erlang, and why?
#39worked with Erlang lately in a side project, I think the actor model is really cool (and the FP style), but the error messages are not helpful at all (at least for a beginner), I wonder how other people manage.
Re: Which companies are using Erlang, and why?
#40Earlier quoted context omitted.
> It has similar aura than Lisp had before that with Erlang you can do stuff beyond "normal" languages. Like what ?
Erlang's advantage is being able to build a featureful, secure, scalable and performant enough communication backend in very little time and effort. This is a niche in which it can not be beaten.