An Introduction to the Task Module
Learn about the task module in Elixir, which will help to run code concurrently.
We'll cover the following...
Set up the tools
In this course, we cover the most popular tools for performing concurrent work using Elixir. We’ll learn about the pros and cons of each one and see how they work in practice. Like the Task
module and GenServer
, some of them come with Elixir. Other tools like GenStage
, Flow
, and Broadway
are available as stand-alone libraries in the Hex.pm
package ...