Earlier quoted context omitted.
I'm aware of all of that but none of that answers the question.
It’s suggesting that there’s probably not much of a point to it.
Erlang/OTP 25.0 Release
121–125 of 125 posts
Re: Erlang/OTP 25.0 Release
#122Earlier quoted context omitted.
> NoSQL crowd has largely died out. yeah, that was rather curious. Similar to how XML died out. Not with a bang but with a whimper. Not that NoSQL or XML are completely gone today, just like PHP. But suddenly one day you recognize these topics are no longer appearing on HN or elsewhere. Then you realize you're getting old and... oh my god... we're actually stuck working in a fashion industry and nothing matters, life…
Between XML, JSON, YAML and TOML, I would rather my configuration files served in XML, with schema validation and graphical IDE tooling, thank you very much. :)
Re: Erlang/OTP 25.0 Release
#123I taught myself Erlang last year and loved it until I tried to write an application. The OTP documentation, while voluminous, was confusing and seemed to have important omissions, and I found little if any community.
Elixir in Action.
The Little OTP Book.
Designing Elixir Systems with OTP.
Pragmatic Studio's Elixir OTP course.
Re: Erlang/OTP 25.0 Release
#124Have there been benchmarks of the JIT vs say JS or the JVM?
https://stressgrid.com/blog/benchmarking_go_vs_node_vs_elixi...
Some of the things I like better about Elixir and Erlang vs. Go and Java are:
- In Elixir/Erlang, all processes are stored in private memory and can only be accessed via defined message interfaces. In both Go and Java, processes are stored in public memory.
- Elixir/Erlang processes are a lot smaller, memory-wise, than Go/Java processes.
- We moved all of our development at my current company from Java to Elixir because Elixir, being functional, makes writing multi-threaded applications a lot faster/easier. Elixir is also cheaper to deploy. At least that has been our experience.
- I like the syntax of both Elixir and Erlang better than Go, Java, or JS.
- I don't have as much experience with Node/Express, but in my limited testing with Node/Express vs. Elixir/Phoenix, the latter is several times faster and much more scalable. It also makes better use of hardware (which I believe is discussed in the link above).
I hope at least some of this helps answer your question.
Re: Erlang/OTP 25.0 Release
#125Is Elixir running on OTP 25?