http://www.perlmonks.org?node_id=589732


in reply to My preferred way of handling config data in Perl is:

YAML rocks my world .. but watch out for the indentation .. muck it up and data will mysteriously disappear. Thanks Ingy!

Alex / talexb / Toronto

"Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds

  • Comment on Re: My preferred way of handling config data in Perl is:

Replies are listed 'Best First'.
Re^2: My preferred way of handling config data in Perl is:
by BerntB (Deacon) on Dec 15, 2006 at 02:30 UTC
    yaml is neat, but the std module seems quite slow reading/writing?
      Use YAML::Syck then.

      use Best [[ qw/ YAML::Syck YAML / ], [qw/Load Dump/]; print Dump($complex_thingie);

      Not only slow but buggy as well.