aufflick has asked for the wisdom of the Perl Monks concerning the following question:
The main store/restore functionality works fine with compiled regexes - I would have thought that dclone uses the same code? How does anyone else do deep cloning of hashes?psh% print Dumper $foo $VAR1 = { 'bar' => qr/(?-xism:bar)/ }; psh% $foo2 = Storable::dclone $foo psh% print Dumper $foo2 $VAR1 = { 'bar' => qr/Regexp=SCALAR(0x8df0b40)/ };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Storable::dclone breaking compiled regular expressions
by BrowserUk (Patriarch) on Nov 01, 2005 at 04:56 UTC |