...

/

Building Our Optional Server

Building Our Optional Server

Lets learn when and how to use processes in our project.

Understanding processes

One of the trickiest parts of learning a concurrency-based language like Elixir is understanding when to use processes at all.

Here’s a little guidance. Consider processes when these use cases show up:

  • Sharing state across processes. ...