redis的php驱动两种方式
发表于:2024-11-24 作者:热门IT资讯网编辑
编辑最后更新 2024年11月24日,方式一、需要生产(开发)环境安装php得c扩展案例:
方式一、需要生产(开发)环境安装php得c扩展
案例:
connect('192.168.1.96','6379'); $redis->select(1); $key='wait_bill'; $result=$redis->hGetAll($key); ?>
方式二、源生php语言写的驱动包
'192.168.1.96','port'=>6379,'database'=>1,'password'=>null]);$result=$redis->keys('*');print_r($result);?>
附:predis驱动程序
https://packagist.org/packages/predis/predis
附件:http://down.51cto.com/data/2368127