forked from onPHP/onphp-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPeclMemcached.class.php
More file actions
238 lines (197 loc) · 5.04 KB
/
PeclMemcached.class.php
File metadata and controls
238 lines (197 loc) · 5.04 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/***************************************************************************
* Copyright (C) 2006-2012 by Konstantin V. Arkhipov *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation; either version 3 of the *
* License, or (at your option) any later version. *
* *
***************************************************************************/
/**
* Connector for PECL's Memcache extension by Antony Dovgal.
*
* @see http://tony2001.phpclub.net/
* @see http://pecl.php.net/package/memcache
*
* @ingroup Cache
**/
class PeclMemcached extends CachePeer
{
const DEFAULT_PORT = 11211;
const DEFAULT_HOST = '127.0.0.1';
const DEFAULT_TIMEOUT = 1;
private $instance = null;
private $requestTimeout = null;
private $connectTimeout = null;
private $host = null;
private $port = null;
private $triedConnect = false;
/**
* @return PeclMemcached
**/
public static function create(
$host = Memcached::DEFAULT_HOST,
$port = Memcached::DEFAULT_PORT,
$connectTimeout = PeclMemcached::DEFAULT_TIMEOUT
)
{
return new self($host, $port, $connectTimeout);
}
public function __construct(
$host = Memcached::DEFAULT_HOST,
$port = Memcached::DEFAULT_PORT,
$connectTimeout = PeclMemcached::DEFAULT_TIMEOUT
)
{
$this->host = $host;
$this->port = $port;
$this->connectTimeout = $connectTimeout;
}
public function __destruct()
{
if ($this->alive) {
try {
$this->instance->close();
} catch (BaseException $e) {
// shhhh.
}
}
}
public function isAlive()
{
$this->ensureTriedToConnect();
return parent::isAlive();
}
/**
* @return PeclMemcached
**/
public function clean()
{
$this->ensureTriedToConnect();
try {
$this->instance->flush();
} catch (BaseException $e) {
$this->alive = false;
}
return parent::clean();
}
public function increment($key, $value)
{
$this->ensureTriedToConnect();
try {
return $this->instance->increment($key, $value);
} catch (BaseException $e) {
return null;
}
}
public function decrement($key, $value)
{
$this->ensureTriedToConnect();
try {
return $this->instance->decrement($key, $value);
} catch (BaseException $e) {
return null;
}
}
public function getList($indexes)
{
$this->ensureTriedToConnect();
return
($return = $this->get($indexes))
? $return
: array();
}
public function get($index)
{
$this->ensureTriedToConnect();
try {
return $this->instance->get($index);
} catch (BaseException $e) {
if(strpos($e->getMessage(), 'Invalid key') !== false)
return null;
$this->alive = false;
return null;
}
Assert::isUnreachable();
}
public function delete($index)
{
$this->ensureTriedToConnect();
try {
// second parameter required, wrt new memcached protocol:
// delete key 0 (see process_delete_command in the memcached.c)
// Warning: it is workaround!
return $this->instance->delete($index, 0);
} catch (BaseException $e) {
return $this->alive = false;
}
Assert::isUnreachable();
}
public function append($key, $data)
{
$this->ensureTriedToConnect();
try {
return $this->instance->append($key, $data);
} catch (BaseException $e) {
return $this->alive = false;
}
Assert::isUnreachable();
}
/**
* @param float $requestTimeout time in seconds
* @return PeclMemcached
*/
public function setTimeout($requestTimeout)
{
$this->ensureTriedToConnect();
$this->requestTimeout = $requestTimeout;
$this->instance->setServerParams($this->host, $this->port, $requestTimeout);
return $this;
}
/**
* @return float
*/
public function getTimeout()
{
return $this->requestTimeout;
}
protected function ensureTriedToConnect()
{
if ($this->triedConnect)
return $this;
$this->triedConnect = true;
$this->instance = new Memcache();
try {
try {
$this->instance->pconnect($this->host, $this->port, $this->connectTimeout);
} catch (BaseException $e) {
$this->instance->connect($this->host, $this->port, $this->connectTimeout);
}
$this->alive = true;
} catch (BaseException $e) {
// bad luck.
}
return $this;
}
protected function store(
$action, $key, $value, $expires = Cache::EXPIRES_MEDIUM
)
{
$this->ensureTriedToConnect();
try {
return
$this->instance->$action(
$key,
$value,
$this->compress
? MEMCACHE_COMPRESSED
: false,
$expires
);
} catch (BaseException $e) {
return $this->alive = false;
}
Assert::isUnreachable();
}
}