PHP 使用redis,php使用redis_PHP教程
程序员文章站
2022-05-26 10:22:49
...
PHP 使用redis,php使用redis
connect($host, $port); if ($ret === false) { die($redis->getLastError()); } $ret = $redis->auth($user . "-" . $pwd . "-" . $dbname); if ($ret === false) { die($redis->getLastError()); } /*接下来就可以对该库进行操作了,具体操作方法请参考phpredis官方文档*/ $redis->flushdb(); $ret = $redis->set("key", "value"); if ($ret === false) { die($redis->getLastError()); } else { echo "OK".$redis->get("key"); } } catch (RedisException $e) { die("Uncaught exception " . $e->getMessage()); } ?>
上一篇: 查看哪个进程占用8080端口
下一篇: Ubuntu下的c++连接数据库