in reply to Re^3: Perl solution for storage of large number of small files
in thread Perl solution for storage of large number of small files
Implementing your own primitive bucketing algorithm by using several DBM files sounds ... perverse. If going down the DBM route, I'd use just one file and let perl handle that. I'd also use GDBM_File in preference to DB_File as it has fewer restrictions on your data. You might want to consider DBM::Deep if you want to fake up a filesystem in a file, or go crazy and create a *real* filesystem in a file, optimised for your circumstances, and mount that.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: SQLite performance
by jbert (Priest) on May 02, 2007 at 10:52 UTC |