Created
June 2, 2009 06:03
-
-
Save nolim1t/122092 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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