PHP 使用redis,php使用redis
程序员文章站
2022-04-23 16:49:08
...
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()); } ?>
上一篇: ThinkPHP模版引擎之变量输出详解_php实例
下一篇: Python编程中的反模式实例分析