...

/

When to Leave Elixir

When to Leave Elixir

Let’s learn about some of the benefits and drawbacks of using Elixir.

We'll cover the following...

Advantages

  • The BEAM gives us a toolkit, which means we don’t need external dependencies as often as many other environments do.

  • It’s rare to need memcached or Redis for ephemeral state with ets built-in.

  • If we need a worker pool or a background job system, we can probably ...