php 操作redis
摘要:
<?php //实例化redis $redis = new Redis(); //连接redis 服务ip 端口默认6379 $redis->connect('127.0.0.1', 6379); //redis password $redis->auth('mypassword'); //设置值 阅读全文
posted @ 2021-12-08 17:09 程序员qiao 阅读(156) 评论(1) 推荐(1) 编辑