YMQRBACRelationRedisHelper.class.php
1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
require_once dirname(__FILE__). '/config/RedisConfig.php';
//require_once dirname(__FILE__). '/config/SectionConfig.php';
/**
* Redis操作类
*/
class YMQRBACRelationRedisHelper
{
/**
* redis对象
* @var Redis
*/
public $mRedis;
/**
* 操作redis中的数据
*
* @return void
*/
public function __construct()
{
if (defined('YMQ_RBAC_RELATION_REDIS_HOST') && defined('YMQ_RBAC_RELATION_REDIS_PORT'))
{
$this->createConnect(YMQ_RBAC_RELATION_REDIS_HOST, YMQ_RBAC_RELATION_REDIS_PORT);
}
}
/**
* 析构函数
*
* @return void
*/
public function __destruct()
{
$this->disconnect();
}
/**
* 创建连接
*
* @param $host string 主机名
* @param $port int 主机端口
* @return boolen
*/
public function createConnect($host,$port)
{
$re = false;
try
{
$this->mRedis = new Redis();
$this->mRedis->connect($host,$port);
$re = true;
}
catch (Exception $e)
{
// TODO 创建 MQ 异常处理
}
return $re;
}
/**
* 关闭连接
*
* @return void
*/
public function disconnect()
{
if (isset($this->mRedis))
{
@$this->mRedis->close();
}
unset($this->mRedis);
}
}