In Elixir, every function runs inside a separate process, and we can deal with processes in a very natural way offered by the language. It's possib...
For further actions, you may consider blocking this person and/or reporting abuse
Never heard about Genservers before... I'll take a better look soon, but thanks for the posting anyways!
Really good explanation on how Genservers work
Thanks a lot ❤️
Thanks for sharing, cousin <3
In your article, you've talked about GenServer making it easier to manage state and run tasks in Elixir. Can you provide an example where using GenServer made a task simpler or solved a problem more efficiently compared to using just Agent or Task?
Gen server is the glued version of Agent (managing state) and Task (handling async) with the possibility of managing messages through processes. The phoenix framework is a great example of using gen server abstraction for the whole http layer
Obrigado Cherry
Awesome
Great content, thanks for sharing!
Nice article!
Nice post!!!