I'm looking at this
http://www.perldoc.com/cpan/IPC/SharedCache.html
I've got it installed.
I try to call this statement
my %cache;
tie %cache 'IPC::SharedCache', ipc_key => 'PMT1',
load_callback => \&load_file,
validate_callback => \&validate_file;
This was pulled directly from the example (url above).
I get the error:
String found where operator expected at /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Shared/Fileutilc.pm line 39, near "%cache 'IPC::SharedCache'"
(Missing operator before 'IPC::SharedCache'?)
Any ideas what i'm doing wrong?