redis连接和测试

刚在本地配置了redis环境,然后进行了测试,学习之后继续跟进
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$redis->auth('mypassword');
echo "Connection to server successfully";
//设置 redis 字符串数据
$redis->set("tutorial-name", "Redis tutorial");
// 获取存储的数据并输出
echo "Stored string in redis:: " . $redis->get("tutorial-name");

你可能感兴趣的:(redis)