morgamic%mozilla.com 6702d5d1fe Checking in modifications to add memcache support to aus2. Bug 425287, r=oremj.
git-svn-id: svn://10.0.0.236/trunk@248674 18797224-902f-48f8-a5cc-f745e15eee43
2008-03-27 08:24:35 +00:00

16 lines
319 B
PHP

<?php
// If this is not from command line, exit.
if (!empty($_SERVER['HTTP_HOST'])) {
exit;
}
require_once('inc/config.php');
require_once('inc/memcaching.php');
$m = new Memcaching();
$m->flush();
echo "Flushing memcache entries... \n";
echo "Updated stats: \n\n";
print_r($m->getExtendedStats());
echo "\n";
?>