- or download this
memcached -d -m1024 -l 127.0.0.1 -p 11211 -u root
- or download this
PerlModule My::SSI
<Files ~ "\.(s?html|xml)$">
...
PerlOptions +SetupEnv
PerlOutputFilterHandler My::SSI
</Files>
- or download this
package My::MemcacheTest;
...
my $simple_test = $memd->get('my_test') || 'This did not work';
print STDERR "Test Result = $simple_test\n";
}
- or download this
#!/usr/bun/perl
use Cache::Memcached;
...
);
print "Memcached value is: ".$memd->get('my_test')." \n";