美文网首页我爱编程
Thinkphp5怎么扩展Redis数据库,实现Redis的CU

Thinkphp5怎么扩展Redis数据库,实现Redis的CU

作者: 君满楼001 | 来源:发表于2017-12-21 18:22 被阅读415次

Thinkphp5怎么扩展Redis数据库,实现Redis的CURD操作

Redis怎么使用Redis数据库,本篇文章主要介绍在Thinkphp5项目中如何使用Redis数据库

一、基础环境

PHP扩展: http://www.zhaisui.com/article/38.html

二、数据库配置

1、头部引用Redis类

use think\cache\Driver;

2、Redis 数据库配置信息

$config = [

'host'      => '服务器IP地址',

'port'      => Redis端口号,

'password'  => 'Redis访问密码',

'select'    => 0,

'timeout'    => 0,

'expire'    => 0,

'persistent' => false,

'prefix'    => '',

];

三、 Redis基本使用

$Redis=new Redis($config);

$Redis->set("test","test");

echo $Redis->get("test");

四、具体代码如下:

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");

}

}

相关文章

网友评论

    本文标题:Thinkphp5怎么扩展Redis数据库,实现Redis的CU

    本文链接:https://www.haomeiwen.com/subject/jvaawxtx.html