Help for this page

Select Code to Download


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