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.

Poll: Rubyists, what server-side language should I learn in 2017?

11 pointsby itsderek23about 8 years ago
I&#x27;ve primarily been a one-trick pony for years on the server-side with Ruby, but I&#x27;m curious what languages other folks are using on the server-side for production apps.<p>What are you using to complement Ruby in production?

10 comments

jfaucettabout 8 years ago
Elixir. Why? Because it has tooling that is up to the high standards you&#x27;re used to using in Ruby and Rails. It has a great ecosystem, package manager, and build tooling. The documentation is fantastic and filled with examples. It also has type annotation and type checking and being built on top of the Erlang VM its really good at soft realtime apps which is probably most of what you&#x27;re doing server-side anyway.<p>I&#x27;ve used other languages mentioned by others here in projects (Go, Clojure, Haskell, Rust) and although many are nice, for instance Rust has many excellent features and a sophisticated build and package management tool to go along with it, and Go can be somewhat useful if you want a UTF8-friendly concurrent and GC&#x27;d C, I still don&#x27;t think they&#x27;re good fits for the majority of server-side apps.
itamarstabout 8 years ago
My favorite language, it&#x27;s the best, trust me!<p>More seriously: what are your goals in learning a new language? If it&#x27;s new skills or ways of thinking, go for something that&#x27;s quite different from Ruby in some <i>educational</i> way. Clojure, Elixir or Haskell will teach you rather more than Go will, each in their own way.<p>* All three are functional, so no mutability by default.<p>* Clojure has software transactional memory (as does Haskell, I believe?), and it&#x27;s a Lisp so you can create macros and customize the language.<p>* Haskell has a very powerful type system.<p>* Elixir use Erlang&#x27;s agent-based runtime and functionality, which e.g. lets you do hotswapped code upgrades on a running server.<p>Go has a stupid type system (e.g. Java&#x27;s is much better) and a concurrency system that doesn&#x27;t help with any of the hard problems in concurrency. On the other hand, Go might be a more marketable skill than any of the ones I recommended for educational purposes.<p>So it depends on your goals.<p>More ideas on choosing which technology to learn more broadly: <a href="https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2016&#x2F;04&#x2F;27&#x2F;which-technology&#x2F;" rel="nofollow">https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2016&#x2F;04&#x2F;27&#x2F;which-technology&#x2F;</a>
modabout 8 years ago
I would vote JS or Clojure.<p>I like Clojure more, but Javascript seems more versatile and is a more employable skill.
smilesndabout 8 years ago
C, it is the only language you need.
评论 #13842707 未加载
iLemmingabout 8 years ago
Clojure. I guarantee - you&#x27;re gonna like it.
评论 #13852413 未加载
haidraliabout 8 years ago
Node Js I have heard of a lot
itsderek23about 8 years ago
Rust
itsderek23about 8 years ago
NodeJS
评论 #13840973 未加载
itsderek23about 8 years ago
Go
评论 #13840967 未加载
lobo_tuertoabout 8 years ago
Elixir.