NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Storable prereq (Score:2)
This would be the
Storablethat has been in core as of 5.8.0? And built and installed by default? So what's the problem with making it a prerequisite?Re: (Score:2)
Can't speak for Chris, but for me it is horribly broken if at any time you upgrade. Anything made with a specific version of Storable will ONLY work with that version of Storable. The data file also breaks between different OSs even with the same version. In a previous project I ended up moving to XML because it actually was persistent!
It may have changed since, but these days I avoid it wherever possible.
Re: (Score:2)
The default file format is architecture specific, for speed. If you want to move things between systems (or
perlconfigurations) you wantnstoreornfreeze.As to between versions - yes, there was a bug in the version checking code, based on the intent. It used to (wrongly) insist that the major and minor versions of the file were identical, and as the minor version had often been bumped, that meant problems. Some time ago (I forget w
Re: (Score:1)
This is also the same Storable that constantly dies of gets wrong cloning with "Can't store CODE items" errors. Another problem Clone::clone never has.