Redis.php
2.0 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
namespace Lib;
/**
 * redis 链接池 swoole内置了链接池,自能在协程中使用,所以单独写出来
 * @author:dc
 * @time 2023/2/10 17:04
 * Class Redis
 */
class Redis {
    use RedisQuery;
    /**
     * @var \Lib\Redis
     */
    static $instance;
    /**
     * Redis constructor.
     */
    public function __construct()
    {
        if(!$this->conn()){
            $this->conn();
        }
    }
    /**
     * @return \Redis
     * @author:dc
     * @time 2023/4/12 15:11
     */
    public function getClient(){
        try {
            if(!$this->client->ping()){
                $this->conn();
            }
        }catch (\Throwable $e){
            $this->conn();
        }
        return $this->client;
    }
    /**
     * 链接
     * @author:dc
     * @time 2023/4/12 15:10
     */
    private function conn(){
        $this->client = new \Redis();
        if($this->client->pconnect(REDIS_HOST,REDIS_PORT,2)){
            // 密码
            REDIS_PASSWORD && $this->client->auth(REDIS_PASSWORD);
            // 用库4
            $this->client->select(REDIS_DB);
            return true;
        }
        return false;
    }
    /**
     *
     */
    public function __destruct()
    {
       $this->close();
    }
    /**
     * @return \Lib\Redis
     * @author:dc
     * @time 2023/2/13 9:38
     */
    public static function instance(){
        if(empty(static::$instance)){
            static::$instance = new \Lib\Redis();
        }
        try {
            static::$instance->client->ping();
        }catch (\Throwable $e){
            static::$instance->close();
            static::$instance = new \Lib\Redis();
        }
        return static::$instance;
    }
    /**
     * 关闭
     * @author:dc
     * @time 2023/3/16 13:42
     */
    public function close(){
        // TODO: Implement __destruct() method.
        try {
            $this->client->ping();
            $this->client->close();
        }catch (\Throwable $e){
        }
        $this->client = null;
    }
}