cevado
So I’ve written an article discussing the difference between “applications” and “libraries” as OTP applications.
I’ve tried to differentiate between them in the context of OTP, and I’d like to know what people think about the points that I made on it.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
:warning: Security advisory: Decimal DoS vulnerability
A vulnerability has been published for decimal where very large exponents can cau...
New
It would be helpful to have a list of companies worldwide that hire engineers without prior experience in Elixir. Often, it can be quite ...
New
Other Trending Topics
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
hauleth
The difference is similar as in OS libraries vs applications (in context of system supervisor). Library is just set of functions grouped in the modules where application is something that can run on its own. Good example there can be OpenTelemetry API vs OpenTelemetry SDK where the first one is “library of functions” and second one is “independent application with own supervision tree”.
cevado
I understand the difference between them. My point on the article is that creating an “application” is an anti-pattern from the point of view of OTP that should be avoided because it reduces the control we have over the execution and how other parts of the system interact with it.
hauleth
Yes, because 95% of the time when someone defines application, they wanted library instead. You rarely need to write full application for your purposes, in most cases exposing functions that spawn processes you need is much better than spawning that function for the user, but still there are use cases when it is desirable. For user convenience (like in my
systemdlibrary) or that we just need a mutable state for keeping info about rest of the system (like intelemetry, however I think that in futurepersistent_termmay be used there) or that there is no reason for having multiple instances of the processes as it is “sidecar-like” application (like OpenTelemetry).lkuty
FYI, the article is not available anymore. In fact
cevado.meis “available on GoDaddy Auctions”.Interesting article about it at Reusable Elixir Libraries.
cevado
i’ve moved it to https://cevado.wtf/
i’ll make that post available again and link it here.
edit:
so a link to the original blog post of this topic
https://cevado.wtf/posts/otp-applications/
keep in mind that the tone that i’m using this blogpost is not a good one, very mandatory and shitting on peoples solutions. i was planning to rewrite it with a better tone and better language, but never had the time.
gregjohnson
Thank you. I think your article should be developed to be one of the main sections of the Elixir Docs.
My sense has always been that the docs are missing treatment of these key structuring issues.
For example, the docs have a section “Library guidelines”, but I’m not aware of any discussion in the docs of the differences between a Library and an Application, or more importantly the guidance on how to structure as you provide.
I don’t feel sufficiently qualified to propose a docs PR, but I do think a great many people would appreciate having your observations and suggestions developed into a key component of the docs.
Even after many years of producing production systems your article succinctly calls out the issues I’m sure many of us have had to confront while thinking we must be naive or incompetent because there is no treatment of the issues in the docs.
Many thanks again, Regards …