Skip to content

Instantly share code, notes, and snippets.

@nolim1t
Created June 2, 2009 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolim1t/122092 to your computer and use it in GitHub Desktop.
Save nolim1t/122092 to your computer and use it in GitHub Desktop.
<?php
$memcache = new Memcache;
$memcache->connect('a.b.c.d', 11211);
$memcache->set('test', 'This could be an array or an object (the methods wont get saved!', false, 600);
$retrieval = $memcache->get('test');
if ($retrieval) print_r($retrieval);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment