Elixir, ölçeklenebilir ve bakımı kolay uygulamalar oluşturmak için tasarlanmış dinamik ve fonksiyonel bir programlama dilidir.
Elixir, düşük gecikmeli, dağıtılmış ve arıza toleranslı sistemler çalıştıran aynı zamanda web geliştirme ve gömülü yazılım alanlarında başarıyla kullanılan Erlang VM'den yararlanır.
Elixir hakkında daha fazla bilgi edinmek için başlangıç kılavuzumuza bakabilir veya platform, dil ve araçlar hakkında genel bir fikir edinmek için okumaya devam edebirsiniz.
Platform özellikleri
Ölçeklenebilirlik
All Elixir code runs inside lightweight threads of execution (called processes) that are isolated and exchange information via messages:
Due to their lightweight nature, it is not uncommon to have hundreds of thousands of processes running concurrently in the same machine. Isolation allows processes to be garbage collected independently, reducing system-wide pauses, and using all machine resources as efficiently as possible (vertical scaling).
Processes are also able to communicate with other processes running on different machines in the same network. This provides the foundation for distribution, allowing developers to coordinate work across multiple nodes (horizontal scaling).
Fault-tolerance
The unavoidable truth about software running in production is that things will go wrong. Even more when we take network, file systems, and other third-party resources into account.
To cope with failures, Elixir provides supervisors which describe how to restart parts of your system when things go awry, going back to a known initial state that is guaranteed to work:
Language features
Functional programming
Functional programming promotes a coding style that helps developers write code that is short, fast, and maintainable. For example, pattern matching allows developers to easily destructure data and access its contents:
When mixed with guards, pattern matching allows us to elegantly match and assert specific conditions for some code to execute:
Elixir relies heavily on those features to ensure your software is working under the expected constraints. And when it is not, don’t worry, supervisors have your back!
Extensibility and DSLs
Elixir has been designed to be extensible, letting developers naturally extend the language to particular domains, in order to increase their productivity.
As an example, let’s write a simple test case using Elixir’s test framework called ExUnit:
The async: true
option allows test
s to run in parallel, using as many CPU cores as possible, while the assert
functionality can introspect your code, providing great reports in case of failures. Those features are built using Elixir macros, making it possible to add new constructs as if they were part of the language itself.
Tooling features
A growing ecosystem
Elixir ships with a great set of tools to ease development. Mix is a build tool that allows you to easily create projects, manage tasks, run tests and more:
Mix is also able to manage dependencies and integrates nicely with the Hex package manager, which provides dependency resolution and the ability to remotely fetch packages.
Interactive development
Tools like IEx (Elixir’s interactive shell) are able to leverage many aspects of the language and platform to provide auto-complete, debugging tools, code reloading, as well as nicely formatted documentation:
Erlang compatible
Elixir runs on the Erlang VM giving developers complete access to Erlang’s ecosystem, used by companies like Heroku, WhatsApp, Klarna, Basho and many more to build distributed, fault-tolerant applications. An Elixir programmer can invoke any Erlang function with no runtime cost:
To learn more about Elixir, check our getting started guide. We also have online documentation available and a Crash Course for Erlang developers.