in reply to handling Perl Persistent Objects
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 :
|
|---|