bageler has asked for the wisdom of the Perl Monks concerning the following question:

Please, oh esteemed monks of perl, grace me with your wisdom!

I have these two lines:

my $poptags = $memcache->get('poptags'); my @poptags = @{$memcache->get('poptags')};
Now, print Dumper($poptags) is UNDEF and print Dumper(@poptags) is the array I was looking for.

This began happening at 8:42am, before anyone got to work. Nothing on the machine (besides logs) have modification times newer than two weeks ago. What would be causing this, if the memcache daemon is also local?