oakbox has asked for the wisdom of the Perl Monks concerning the following question:
To be less abstract: The storable file holds text entries for different languages. The user of the web application is identified as using a particular language. When text needs to go to the screen, I just insert the appropriate language entry ($language->{unique_key}).
I'm doing 99% reading and very little writing to this data.
My question is, should I be using Storable here or tie(ing) this data structure using MLDBM? Which is faster? Is there a PROBLEM with just using Storable in this way?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: MLDBM vs Storable
by Aristotle (Chancellor) on Feb 21, 2006 at 07:44 UTC | |
by oakbox (Chaplain) on Feb 21, 2006 at 11:46 UTC | |
Re: MLDBM vs Storable
by dragonchild (Archbishop) on Feb 21, 2006 at 12:49 UTC | |
by DrHyde (Prior) on Feb 22, 2006 at 11:02 UTC |