Thinkphp5怎么扩展Redis数据库,实现Redis的CURD操作
发布网友
发布时间:2022-04-06 02:53
我来回答
共1个回答
热心网友
时间:2022-04-06 04:22
具体代码如下:
namespace app\index\controller;
use \think\Db;
use think\cache\driver\Redis;
class Index
{
public function index()
{
$config = [
'host' => '服务器IP地址',
'port' => Redis端口号,
'password' => 'Redis访问密码',
'select' => 0,
'timeout' => 0,
'expire' => 0,
'persistent' => false,
'prefix' => '',
];
$Redis=new Redis($config);
$Redis->set("test","test");
echo $Redis->get("test");
}
}