bobbypriambodo

bobbypriambodo

Agent, Task, GenServer, GenEvent: what do you use it for?

I’m trying to understand more about Elixir OTP concepts, particularly the ones mentioned in the title. The tutorials gave examples with KV buckets, but I think I need more realistic examples.

Can anyone give examples on how you use them in your apps/libraries? (I’m particularly interested in their usage on a Phoenix app, but if you do use it on Elixir app it’s okay too.)

Most Liked

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

First, a nit pick. There are only Elixir apps. Some Elixir apps use phoenix, some do not, but there are only Elixir apps.

Let’s start with the simplest case, tasks. We have an async job worker system, and every job is run inside a task. This makes it easy for the worker process to monitor what happens to the job. It also makes for less work for the garbage collector because any memory the job uses can be all easily reclaimed when the process quits.

GenServers: These get used for a variety of things. I have a slack bot process that aggregates some info and periodically shoves it in slack. I have processes that represent sensors out in warehouses monitoring temperature, and these genservers give us notifications if they haven’t heard from a sensor in X amount of time (amongst other things).

Agent: Basically just a simplified genserver. Never used one.

GenEvent: Used it a long time ago, but there were pain points. Technically I still use it cause I have a customer Logger backend and IIRC it uses GenEvent.

Not mentioned: :gen_statem I used recently in some sensor management software. Each connected sensor gets its own state machine process that ensures it walks through the right states / transitions as it gets configured / upgraded / etc.

bobbypriambodo

bobbypriambodo

True! I wonder why I wrote that, especially when I just reread this “Phoenix is not your application” thread. Sorry about that :sweat_smile: I meant when you are mainly using Phoenix for your app.

Where Next?

Popular in Questions Top

Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
Kurisu
For example for a current url like http://localhost:4000/cosmetic/products?_utf8=✓&query=perfume&page=2, I would like to get: ...
New
Fl4m3Ph03n1x
About me? ( if you have nothing better to do than reading about some random guy in the internet :stuck_out_tongue: ) Hello all, this is ...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
jerry
Good day to you all. I have been struggling to get a query involving like and ilike to work. Can anyone assist me on this, please? pro...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New

Other popular topics Top

danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 29603 241
New
hariharasudhan94
lets say i have a sample like a = 20; b = 10; if (a > b) do {:ok, "a"} end if (a < b) do {:ok, b} end if (a == b) do {:ok, "equa...
New
sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
985 43487 311
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
johnnyicon
Hi all, I’ve just started learning Elixir and Phoenix Framework, so please pardon my n00bness at this stage. I’m trying to use Postgres...
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New

Latest on Elixir Forum

We're in Beta

About us Mission Statement