Reminder to re-read [WayBack] I am looking for a good replacement for INI files for storing large / complex configuration. So far I have used JvApplicatoinIniStorage + a custom INI f… – Thomas Mueller (dummzeuch) – Google+
INI files are textual and allow for comments. They are not good at large bits of information, and are hard to compare because the order is unimportant.
Alternatives like JSON or DFM have similar limitations.
XML is too chatty, and hard to get right by humans.
Related: [WayBack] JSON as configuration files: please don’t
–jeroen