dets
DETS, short for Disk Erlang Term Storage, is a simple on-disk storage facility shipped with the Erlang runtime. It provides persistent storage for Erlang terms by exposing a table-like API similar to ETS, but backed by a file on disk.
A DETS table stores records as key-value pairs (key, value). You open a file to hold the
DETS is intended for lightweight persistence and small datasets. It is not designed for high-concurrency workloads
DETS is commonly used for simple configuration data, caches, or temporary persistence in small applications or