in reply to Efficient hash storage?
YAML is fairly space-efficient and easily readable and editable by a human, though it does require lots of whitespace, which may not be appropriate for your database design.
Data::Dumper will spit your structures out in native Perl code, which is can be retrieved from the database and evaled. It is a security risk, depending on who has access to your database. Once you're evaling stuff, you can put any code in there.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Efficient hash storage?
by whohasit (Novice) on Jul 08, 2005 at 06:16 UTC | |
by jhourcle (Prior) on Jul 08, 2005 at 11:25 UTC |