Hacker News new | ask | show | jobs
by tylerpachal 3140 days ago
Elixir and OTP. Really enjoying it and writing some blog posts about it. My latest [1] was an experiment in creating my own simple supervisor.

I am working my way up to having an Elixir application spread across many containers where the processes can pass messages to processes in other containers.

[1] https://medium.com/@tylerpachal/let-it-crash-creating-an-exa...

1 comments

What is OTP?
OTP comes from Erlang (which Elixir is built on) and it is a framework that is used for creating distributed applications (it originally stood for Open Telecom Platform). It has databases, a test framework, and debugging tools to help.

Down in Elixir land you mainly see it in the form of GenServer (generic servers that are essentially actors) and Supervisors for supervising those GenServer workers and other tasks/processes/

Cool thanks!