TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

GitMonitor on Elixir

105 pointsby lumannnnalmost 9 years ago

8 comments

rdtscalmost 9 years ago
&gt; Immediate wins [...] We were able to get rid of some servers, and downsize the remaining servers [...] Response times are down as well [...] Development and deployment are also faster.<p>A case for new technology should be made more than just on pure technical features but also in terms of reduced ops load, say because of fault tolerance or saving in recurring infrastructure costs. Or it could be community friendliness and acceptance of new members. I feel Elixir does a great job there, as well.<p>Other thing I found using Erlang: It is simply more fun and easier to discover problems. Can launch observer. Setup traces with recon_trace (I started to do that more lately even instead of adding print statement to code, attaching traces to functions is just too easy). Even things like hot-patching have saved the day many time in terms of fixing an issue for some customers with 0-downtime. These seems like nice extras but they all add up and make a huge difference when taken together.
评论 #12353655 未加载
holtalanmalmost 9 years ago
I started using Phoenix for my most recent side project. So far, am really liking Elixir and everything that comes with it. Obviously, I am still learning, but the inclusion of the entire Erlang ecosystem is a big plus.<p>Will have to say that working with Elixir and Phoenix (so far) has been much more enjoyable than working with Rails.<p>I will say the only thing I really miss is extra tooling for debugging and so on, but I&#x27;m primarily a java developer, so I&#x27;m used to having all sorts of options at my fingertips for debugging.
评论 #12353664 未加载
StreamBrightalmost 9 years ago
Great news, more people discover how good Erlang(and obviously Elixir) is, especially comparing to Ruby&#x2F;Rails. I hope more people are going to consider it.
foepysalmost 9 years ago
A few weeks ago I wrote a very basic IRC server in Elixir to learn the language and was very impressed how fast I was able to get it running. Despite it being my first contact with a functional language the coding felt very intuitive to me.<p>The only thing I miss is good tooling support but I&#x27;m coming from Java and a bit spoiled in that regard.
评论 #12353087 未加载
_halgarialmost 9 years ago
&quot;Elixir is blazing fast&quot; it says, so I follow the link and notice that &quot;blazing fast&quot; apparently means 10x the speed of Ruby. I don&#x27;t think that phrase means what they think it means.
评论 #12352933 未加载
评论 #12353691 未加载
karkubalmost 9 years ago
Just a note for blog authors - please add link to your product on your blog, in visible. I almost didn&#x27;t check what you do, because I&#x27;m almost too lazy to click on address bar and remove &quot;blog&quot; prefix.
评论 #12355218 未加载
qaqalmost 9 years ago
We&#x27;ve being playing with Elixir and are planing to ship first production app in the Fall. Very productive and unique environment. Coming from node it&#x27;s so much nicer for concurrency not to mention all the other cool features of BEAM VM.
abrookewoodalmost 9 years ago
Can someone explain this? &quot;Umbrella projects ... [are] a really great concept that allows us to have multiple microservices living in the same codebase, while giving us the flexibility to scale each service separately&quot;. How is this any different from just storing the code for multiple services in the same repository?