Files
newznab-tmux/misc/testing/Tests/test_cache_server.php
T
2018-02-14 23:08:17 +01:00

15 lines
299 B
PHP
Executable File

<?php
// Test the cache server connection.
require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php';
use Blacklight\libraries\Cache;
try {
$cache = new Cache();
} catch (\Exception $error) {
exit($error->getMessage().PHP_EOL);
}
print_r($cache->serverStatistics());