database - GDBM vs a simple JSON, INI or YAML configuration file -
i studying file based key-value databases such gdbm , can not see real advantage versus using configuration file. both technologies let store in file keys , values.
is advantage of gdbm performance, gdbm parse file faster?
gdbm doesn't parse file, permanent storage key value pairs. storage on disc can larger memory (although indices have fit).
if start yaml, jsoon or ini files, first have parse material , has fit in memory.
Comments
Post a Comment