blob: a7859b2755a738e7182cd7762a5219bb54ef4886 [file] [log] [blame]
<?php
header("Content-type: application/json");
$redis = new Redis();
$redis->connect('127.0.0.1');
$redis->select(11);
$value = $redis->get(1);
print $value;
?>