Erlang / Erlang Advanced Interview questions
What is a release in OTP and how does it differ from an application?
A release bundles a specific set of applications (your own plus the OTP applications they depend on,
like kernel, stdlib, and sasl) together with a matching Erlang/OTP
runtime version into one deployable, versioned unit — typically built with rebar3 release or
similar tooling, producing a boot script and a self-contained directory tree you can ship to a server.
Where an application is one component (say, a payments service), a release is the complete, runnable system:
every application it needs, pinned to specific versions, plus the runtime itself. This distinction matters most
during upgrades — you can hot-swap an individual module inside a running application, but moving from one
full release version to another (with dependency version changes, new applications, or config changes) is
handled by release-level tooling (relup/release_handler), not simple module reloading.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
