bageler has asked for the wisdom of the Perl Monks concerning the following question:
I have these two lines:
Now, print Dumper($poptags) is UNDEF and print Dumper(@poptags) is the array I was looking for.my $poptags = $memcache->get('poptags'); my @poptags = @{$memcache->get('poptags')};
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?
|
|---|