PHP测试Memcached或Redis是否连接成功

Memcached & Redis
Memcached & Redis

PHP测试Memcached是否连接成功

<?php
$memcache = new Memcached; //创建一个memcache对象
$memcache->addServer('127.0.0.1', 11211) or die ("Could not connect"); //连接Memcached服务器
$memcache->set('key', 'test'); //设置一个变量到内存中,名称是key 值是test
$get_value = $memcache->get('key'); //从内存中取出key的值
echo $get_value;
?>

返回“test”,即成功!

PHP测试Redis是否连接成功

<?php
//连接本地的 Redis 服务
$redis = new Redis();
# 连接的IP 地址,端口号
$redis->connect('127.0.0.1', 6379);
echo "Connection to server sucessfully";
//查看服务是否运行
echo "Server is running: "+ $redis->ping();
?>

返回"Connection to server sucessfully Server is running: PONG",即成功!

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注