-
-
Save billyteves/89811992763cb49f3b4f2540bcde672c 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 | |
if (class_exists('Memcache')) { | |
$server = 'localhost'; | |
if (!empty($_REQUEST['server'])) { | |
$server = $_REQUEST['server']; | |
} | |
$memcache = new Memcache; | |
$isMemcacheAvailable = @$memcache->connect($server); | |
if ($isMemcacheAvailable) { | |
$aData = $memcache->get('data'); | |
echo '<pre>'; | |
if ($aData) { | |
echo '<h2>Data from Cache:</h2>'; | |
print_r($aData); | |
} else { | |
$aData = array( | |
'me' => 'you', | |
'us' => 'them', | |
); | |
echo '<h2>Fresh Data:</h2>'; | |
print_r($aData); | |
$memcache->set('data', $aData, 0, 300); | |
} | |
$aData = $memcache->get('data'); | |
if ($aData) { | |
echo '<h3>Memcache seem to be working fine!</h3>'; | |
echo '<h2>Data from Cache:</h2>'; | |
print_r($aData); | |
} else { | |
echo '<h3>Memcache DOES NOT seem to be working!</h3>'; | |
} | |
echo '</pre>'; | |
} | |
} | |
if (!$isMemcacheAvailable) { | |
echo 'Memcache not available'; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment