TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

GitMonitor on Elixir

105 点作者 lumannnn将近 9 年前

8 条评论

rdtsc将近 9 年前
&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 未加载
holtalanm将近 9 年前
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 未加载
StreamBright将近 9 年前
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.
foepys将近 9 年前
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 未加载
_halgari将近 9 年前
&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 未加载
karkub将近 9 年前
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 未加载
qaq将近 9 年前
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.
abrookewood将近 9 年前
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?