Database / Mnesia basics Interview questions
What is record_info used for when creating a Mnesia table?
record_info(fields, RecordName) is a compiler built-in that expands, at compile time, to the
literal list of field names declared in a -record definition — it's the standard way to
feed a table's attributes option without retyping the field list by hand.
-record(person, {id, name, age}). mnesia:create_table(person, [{attributes, record_info(fields, person)}]). %% expands to: {attributes, [id, name, age]}
Using record_info/2 instead of a hardcoded list keeps the table definition and the record
definition from silently drifting apart — if you add a field to the -record, the
attributes list picks it up automatically the next time the module compiles, rather than
requiring you to remember to update two separate places by hand.
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...
