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
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Just a general thread to post chat/news/info relating to AI/ML stuff that may be relevant for Nx now or in the future. Got anything to sh...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
While I am working on the Language Agnostic Code Audit SaaS, which uses MetaAST (spoiler: I am expecting it to be in a good shape for ann...
New
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 6 of 6 Posts
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 …