StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  1. Stackups
  2. Application & Data
  3. Languages
  4. Languages
  5. Elixir vs Go

Elixir vs Go

OverviewDecisionsComparisonAlternatives

Overview

Golang
Golang
Stacks24.0K
Followers13.9K
Votes3.3K
GitHub Stars130.7K
Forks18.4K
Elixir
Elixir
Stacks3.5K
Followers3.3K
Votes1.3K
GitHub Stars26.0K
Forks3.5K

Elixir vs Go: What are the differences?

Elixir and Go are two popular programming languages known for their performance, concurrency, and scalability. Let's explore the key differences between Elixir and Go:

  1. Syntax and Paradigm: Elixir is a functional programming language built on the Erlang virtual machine (BEAM) and focuses on immutability and data transformation. It has a Ruby-like syntax that prioritizes readability and expressiveness. Go is a statically typed, compiled language with a C-like syntax that emphasizes simplicity and efficiency.

  2. Concurrency and Parallelism: Elixir's concurrency model is based on lightweight processes called actors, enabling massive concurrency through message passing. It provides tools like supervisors and fault-tolerant supervision trees. Go's built-in concurrency model uses goroutines and channels for efficient handling of a large number of concurrent tasks.

  3. Ecosystem and Libraries: Elixir has a robust ecosystem built on Erlang's foundation, known for fault-tolerant and scalable systems. It offers libraries and frameworks for web development (Phoenix), distributed systems (Horde), and real-time communication (Presence). Go has a growing ecosystem focused on simplicity and performance, with standard libraries for networking, web development, and system programming.

  4. Error Handling and Fault Tolerance: Elixir follows a "let it crash" philosophy, treating errors as normal conditions and providing mechanisms like supervisors for recovery. Go uses explicit error returns and runtime error checking, promoting graceful error handling for recovery or propagation.

  5. Performance and Execution Speed: Elixir's performance is influenced by the BEAM virtual machine, optimized for concurrency and fault tolerance. It excels in handling concurrent and distributed workloads, offering scalability. Go is designed for high-performance applications, compiling into native machine code for fast startup times and efficient resource utilization.

In summary, Elixir's functional programming approach, lightweight processes, and fault-tolerant design make it suitable for building scalable and distributed systems. Go's focus on simplicity, efficiency, and built-in concurrency features make it a compelling choice for building high-performance applications.

Golang or Elixir — Help me decide

By Lee Sylvester

Programming Style

Go (commonly referred to as Golang) is a C-like Object Oriented language, while Elixir is a Ruby-like Functional language. The programming styles of each platform were chosen due to the intended platform usage. As a general purpose language, Go incorporates many features of languages such as C and Python, but with an exceptional concurrency layer designed to leverage modern multi-core CPUs. Elixir, first released in 2012, is based on the Erlang VM and enforces immutable data and pattern matching, but also a powerful macro system that forms the building blocks of the language itself.

The Go language incorporates first class functions, which provide for some functional capabilities. Although very C- like, including structs and pointers, Go also offers variadic functions, closures, and the ability to return multiple values from a function. Each of these features make Go more expressive. Go also provides its own limited style of pattern matching in the form of interfaces.

// invoke a closure with one parameter but returning two
func invoke(fn func(string) (int, string), msg string) (int, string) {
  return fn(msg)
}

Each of Elixir's features are designed to enable effortless development of distributed, fault-tolerant applications such as web servers and databases. Pipes are available to chain functions together, while list comprehensions, extensive enumerable functions, and streaming provide numerous ways to process lists of data easily and lazily.

# lazily output a list of words from file
File.stream!("./list_of_words.txt")
|> Enum.map(&String.trim/1)
|> Enum.each(&IO.puts/1)

Elixir also supports pattern matching binary data, which makes encoding and decoding binary packets simpler than any other programming language available today.

Runtime Speed

Go is compiled to a native binary, while Elixir is compiled to bytecode and executed on the Erlang Virtual Machine (BEAM). As such, Go produces applications that run much faster than Elixir. As a rule, Go applications will run comparative to Java applications, but with a tiny memory footprint. Elixir, on the other hand, will typically run faster than platforms such as Ruby and Python, but cannot compete with the sheer speed of Go.

Runtime and memory benchmarking

Runtime and memory benchmarking (Brainf**k benchmarks)

Erlang, the platform underlying Elixir, makes numerous sacrifices in runtime speed in order to provide memory safety, native distributed messaging (clustering), and fault tolerant process management. However, additional speed can be gained where absolutely necessary by incorporating native code called "NIF's" in Elixir applications.

Go was built by Google in 2009 to replace languages such as C++. As such, it was designed as a solution to a large range of programming problems such as web servers, desktop applications, and even games. Runtime speed, therefore, is a high priority of Go.

Fault Tolerance

Elixir (and the Erlang Virtual Machine) were designed from the ground up as a fault tolerant platform. The philosophy of Elixir is "Let it crash!", meaning that an application exception should kill its process. This empowers the developer as there is much less need to write defensive code and to cater for every eventuality. Go, on the other hand, makes no assumptions about the application you are writing. Therefore, applications written in Go are not fault tolerant out-of-the-box.

Elixir provides the notion of process "Supervisors" which create new processes instantaneously when their predecessor dies. Each supervisor can be configured to kill sibling processes if necessary, so that all processes are in sync. Supervisors can also be linked as parent -> child, forming a process tree. The underlying Erlang platform has been known to achieve 99.9999999% (nine nines) reliability or (31 milliseconds of downtime per year).

Go follows the traditional defensive programming paradigms and assumes that exceptions will be handled directly. Processes that are killed due to a failure, or otherwise, must be restarted explicitly if the functionality is still required. Several syntactic constructs exist to facilitate fault handling, including the defer keyword and panic/recover.

With built-in resource alerts, automatic process respawning, process supervision strategies and node rediscovery, Elixir can, therefore, be considered more inherently fault tolerant than Go.

Concurrency

Both Go and Elixir derive CSP processes; a lightweight process methodology using very little memory. The Erlang VM uses only 618 bytes for a new raw process stack, while Go uses around 2 to 3 kilobytes. A typical raw Operating System process, used as a thread in many languages, will utilise at least one Megabyte or more of memory. Therefore, creating processes in either language is cheap on resources and make concurrent applications development very efficient.

Go concurrency focuses around Goroutines and Channels. A Goroutine is a function that can be elevated to a process status when invoked. Messages are passed in and out of processes using Channels.

Go Channels are first class message pipes that can be shared by one or more processes. "First class" means the Channel references can be passed into other functions and processes for consumption. Since Channels are shared, they contain their own mailboxes. This affords a greater amount of flexibility but at the cost of increased complexity.

func invoke(msg string) {
  fmt.Println(msg)
}
go invoke(“Within a new process”)

Go Channels can be considered a little like Events in other platforms and frameworks; you cannot guarantee who will receive the message. This provides greater flexibility but at a cost potential bugs in your applications.

A shared Channel in GoLang

A shared Channel in GoLang

Elixir concurrency follows the Actor model, which describes the notion of processing units that act on data messages. Messages are passed to processes and stored in the process mailbox. When one process sends data to another, the data is copied, meaning individual units of data cannot be modified by two processes, thus preventing data corruption. This suits Elixir as it is a Functional language.

Elixir processes are often derived from the GenServer, which is a contained module definition providing for easy management of incoming messages and state. However, like Go, Elixir also provides a means to create a process from a function invocation. Messages are passed by sending to the receiving processes PID (process id) which can exist on the local server or another server entirely; the Erlang VM makes this completely transparent.

spawn fn -> IO.puts(“within a new process”) end

Elixir messages are direct; they are sent to a specific process. While it is possible to set up a custom Events management system for anonymous message posting, the Elixir / Erlang platform favours safety over flexibility. Concurrency issues are less frequent in Elixir when compared to Go.

Message passing in Elixir

Message passing in Elixir

Further Reading

Here are some other topics worth exploring as you make your decision:

  • Web Servers: Go provides for building web servers out-of-the-box, while Elixir provides the Rails-like Phoenix framework.
  • Databases: Go was used to create InfluxDB, while the Riak NoSQL database was built with Erlang.

Share your Stack

Help developers discover the tools you use. Get visibility for your team's tech choices and contribute to the community's knowledge.

View Docs
CLI (Node.js)
or
Manual

Advice on Golang, Elixir

Ido
Ido

Mar 6, 2020

Decided

When developing a new blockchain, we as a team chose Go lang over Java and other candidates, due to Go being (a) natively suited to concurrency - there are primitives in the language itself (goroutines, channels) that really help with reasoning about concurrency (b) super fast - build time, running, testing are all much faster that Java, this gives a far superior developer experience (c) shorter and stricter than Java - code is much shorter (less verbose), and there is usually one good way to do things, and even the code formatter that is bundled with Go is very opinionated - over a short time this makes reading other people's code far smoother than having to deal with different styles.

You should be aware that Go presently (v1.13) lacks Generics.

267k views267k
Comments
Ítalo
Ítalo

VP Platform Engineering at Lykon

Feb 19, 2020

Decided

We decided to use python to write our ETLs and import them into metabase via a lambda. Before python we tried using Go, but overall go was way more verbose than Python when writing the ETLs. Go also had some issues managing memory when using the S3 upload manager library. This was a deal breaker for us that made us switch to Python.

In the end the solution was much cleaner and maintainable.

261k views261k
Comments
Mohamed
Mohamed

Software Engineer at YottaHQ Inc.

Dec 2, 2019

Decided

PHP is easy to learn and you can get up and running in no time, available on almost all hosting providers and you can find developers easily. It has some great frameworks for building your backend like Symfony and Laravel. However, it can be challenging when running an enterprise and needs some adjustments, very recommended for starting a new project or startup.

208k views208k
Comments

Detailed Comparison

Golang
Golang
Elixir
Elixir

Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.

Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain.

Statistics
GitHub Stars
130.7K
GitHub Stars
26.0K
GitHub Forks
18.4K
GitHub Forks
3.5K
Stacks
24.0K
Stacks
3.5K
Followers
13.9K
Followers
3.3K
Votes
3.3K
Votes
1.3K
Pros & Cons
Pros
  • 557
    High-performance
  • 398
    Simple, minimal syntax
  • 365
    Fun to write
  • 305
    Easy concurrency support via goroutines
  • 273
    Fast compilation times
Cons
  • 43
    You waste time in plumbing code catching errors
  • 25
    Verbose
  • 23
    Packages and their path dependencies are braindead
  • 16
    Google's documentations aren't beginer friendly
  • 15
    Dependency management when working on multiple projects
Pros
  • 174
    Concurrency
  • 163
    Functional
  • 133
    Erlang vm
  • 113
    Great documentation
  • 105
    Great tooling
Cons
  • 11
    Fewer jobs for Elixir experts
  • 7
    Smaller userbase than other mainstream languages
  • 5
    Elixir's dot notation less readable ("object": 1st arg)
  • 4
    Dynamic typing
  • 2
    Difficult to understand
Integrations
Revel
Revel
Martini
Martini
No integrations available

What are some alternatives to Golang, Elixir?

JavaScript

JavaScript

JavaScript is most known as the scripting language for Web pages, but used in many non-browser environments as well such as node.js or Apache CouchDB. It is a prototype-based, multi-paradigm scripting language that is dynamic,and supports object-oriented, imperative, and functional programming styles.

Python

Python

Python is a general purpose programming language created by Guido Van Rossum. Python is most praised for its elegant syntax and readable code, if you are just beginning your programming career python suits you best.

PHP

PHP

Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.

Ruby

Ruby

Ruby is a language of careful balance. Its creator, Yukihiro “Matz” Matsumoto, blended parts of his favorite languages (Perl, Smalltalk, Eiffel, Ada, and Lisp) to form a new language that balanced functional programming with imperative programming.

Java

Java

Java is a programming language and computing platform first released by Sun Microsystems in 1995. There are lots of applications and websites that will not work unless you have Java installed, and more are created every day. Java is fast, secure, and reliable. From laptops to datacenters, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere!

HTML5

HTML5

HTML5 is a core technology markup language of the Internet used for structuring and presenting content for the World Wide Web. As of October 2014 this is the final and complete fifth revision of the HTML standard of the World Wide Web Consortium (W3C). The previous version, HTML 4, was standardised in 1997.

C#

C#

C# (pronounced "See Sharp") is a simple, modern, object-oriented, and type-safe programming language. C# has its roots in the C family of languages and will be immediately familiar to C, C++, Java, and JavaScript programmers.

Scala

Scala

Scala is an acronym for “Scalable Language”. This means that Scala grows with you. You can play with it by typing one-line expressions and observing the results. But you can also rely on it for large mission critical systems, as many companies, including Twitter, LinkedIn, or Intel do. To some, Scala feels like a scripting language. Its syntax is concise and low ceremony; its types get out of the way because the compiler can infer them.

Swift

Swift

Writing code is interactive and fun, the syntax is concise yet expressive, and apps run lightning-fast. Swift is ready for your next iOS and OS X project — or for addition into your current app — because Swift code works side-by-side with Objective-C.

Rust

Rust

Rust is a systems programming language that combines strong compile-time correctness guarantees with fast performance. It improves upon the ideas of other systems languages like C++ by providing guaranteed memory safety (no crashes, no data races) and complete control over the lifecycle of memory.

Related Comparisons

Bootstrap
Materialize

Bootstrap vs Materialize

Laravel
Django

Django vs Laravel vs Node.js

Bootstrap
Foundation

Bootstrap vs Foundation vs Material UI

Node.js
Spring Boot

Node.js vs Spring-Boot

Liquibase
Flyway

Flyway vs Liquibase