The following code (most of the Memoize homepage) creates a file with 0 bytes and then with a perl error with exit code -1073741819. I tested this with ActivePerl 5.10 and the latest version 5.16.
use Memoize; use Memoize::Storable; sub ttt { return 44; } tie my %cache => 'Memoize::Storable', 'ttt.store'; memoize 'ttt', SCALAR_CACHE => [HASH => \%cache];
This happens on two different computers under Win XP. Any ideas?
source share