YMQLoggerRedisHelper.class.php
1.34 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
<?php
require_once dirname(__FILE__).'/config/RedisConfig.php';
/**
* 操作redis中的数据
* @author dan.shen
*/
class YMQLoggerRedisHelper
{
/**
* redis对象
* @var Redis
*/
public $mRedis;
/**
* 操作redis中的数据
* @return void
*/
public function __construct()
{
if(defined('YMQ_LOGGER_REDIS_HOST') && defined('YMQ_LOGGER_REDIS_PORT'))
{
$this->createConnect(YMQ_LOGGER_REDIS_HOST,YMQ_LOGGER_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 创建 UserOnline MQ 异常处理
}
return $re;
}
/**
* 关闭连接
* @return void
*/
public function disconnect()
{
if(isset($this->mRedis))
{
@$this->mRedis->close();
}
unset($this->mRedis);
}
}
?>