Database / Mnesia intermediate to advanced Interview questions
What is mnesia:subscribe/1 used for?
mnesia:subscribe/1 registers the calling process to receive events about Mnesia activity
— table changes, system events like node up/down, or schema changes — delivered as ordinary
messages, letting application code react to data changes without polling.
mnesia:subscribe({table, person, simple}), receive {mnesia_table_event, {write, NewRecord, _ActivityId}} -> handle_change(NewRecord) end.
Subscribing to {table, Table, simple} delivers write/delete events for that table as they
happen; subscribing to system delivers cluster-level events like a node connecting or
disconnecting. This is the foundation for building cache invalidation, live-updating dashboards, or
replication-aware logic that reacts to Mnesia changes in near real time rather than re-querying on a timer.
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...
