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


in reply to handling Perl Persistent Objects

Firstly, Data::Dumper doesn't give you persistence directly.
It is the storing and retrieval of data serialised by Data::Dumper that gives you persistence.

How you loop through depends on whether you use coarse or fine grained persistence.

Coarse grained will retrieve all the data at the start of the progrma and dump it all at the end. Has the advantage of simplicity, and the data can be manipulated using normal Perl during the program.

Fine grained will store and retrieve each individual object each time it is accessed. Advantages are smaller memory footprint for data, and less likely to lose data if the program crashes. Needs more complicated mechanism for handling the storage.

Suggested Refernces :

Tangram is fairly heavy duty, and may be overkill, and both assume a database.
--
Brovnik