elixir

New supervisor for Elixir – SuperWorker

New supervisor for Elixir – SuperWorker

(still updating) Intro Supervisor in Elixir (& Erlang) is one of interesting features of language. For legacy use case it's enough, but it's still limited feature for us. Based on process monitoring & linked feature of language (I have explain in this topic) we created a new supervisor for support more common case & more convenience. Supervisor is target to easy to use, better for multi purposes. Supervisor's features In one of supervisor we support: Group of processes Chain of processes Standalone processes Support partition for scalable system Just need one supervisor in application and can add child in application…
Read More
GenServer, a simple way to work with Elixir process.

GenServer, a simple way to work with Elixir process.

In this topic, I have talk about Elixir process now I talk about GenServer in Elixir. GenServer is a template/skeleton for work with process like a server/client model. It's easy to add to Supervisor and easy to build a robust system (a super weapon in Elixir/Erlang world). GenServer included 2 parts, one is server side it's included in language, an other part is client side (our code, for implement a GenServer). Of course, we can self made an our GenServer but with exist GenServer we have a lot of benefits like: handel errors, support Supervisor, don't need effort to wrap/handle…
Read More
No widgets found. Go to Widget page and add the widget in Offcanvas Sidebar Widget Area.