in reply to fastest file processing Config file format

Use the format that best suits your data, and later if you find it is not fast enough, write some tool to convert it to a better format (*) or do it on the fly and cache the result.

For instance, BSD systems do not read information directly from /etc/passwd but from a database file that is generated with pwd_mkdb.

(*) a better format could be your config object serialized with Storable or saved with DB_File.

  • Comment on Re: fastest file processing Config file format