forked from toymachine/libredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
365 lines (311 loc) · 10.4 KB
/
test.php
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<?php
define("RT_ERROR", -1);
define("RT_NONE", 0);
define("RT_OK", 1);
define("RT_BULK_NIL", 2);
define("RT_BULK", 3);
define("RT_MULTIBULK_NIL", 4);
define("RT_MULTIBULK", 5);
define("RT_INTEGER", 6);
define("EOL", "\r\n");
$ip = "127.0.0.1";
//$ip = "192.168.13.92";
$libredis = Libredis();
function test_ketama() {
global $libredis;
$ketama = $libredis->create_ketama();
$ketama->add_server("10.0.1.1", 11211, 600);
$ketama->add_server("10.0.1.2", 11211, 300);
$ketama->add_server("10.0.1.3", 11211, 200);
$ketama->add_server("10.0.1.4", 11211, 350);
$ketama->add_server("10.0.1.5", 11211, 1000);
$ketama->add_server("10.0.1.6", 11211, 800);
$ketama->add_server("10.0.1.7", 11211, 950);
$ketama->add_server("10.0.1.8", 11211, 100);
$ketama->create_continuum();
$ordinal = $ketama->get_server_ordinal("piet5234");
echo "ord: ", $ordinal, PHP_EOL;
echo "addr: ", $ketama->get_server_address($ordinal), PHP_EOL;
//test speed of creating continuum:
$start = microtime(true);
$N = 1000;
for($j = 0; $j < $N; $j++) {
$ketama = $libredis->create_ketama();
$M = 100;
for($i = 0; $i < $M; $i++) {
$ketama->add_server("10.0.1.$i", 11211, 100);
}
$ketama->create_continuum();
}
$end = microtime(true);
echo "speed creating $N times a continuum for $M servers: ", ($end - $start) / $N, PHP_EOL;
}
function mget($keys, $ketama) {
global $libredis;
$batches = array();
$batch_keys = array();
//add all keys to batches
foreach($keys as $key) {
$server_ordinal = $ketama->get_server_ordinal($key);
if(!isset($batches[$server_ordinal])) {
$batch = $libredis->create_batch("MGET");
$batches[$server_ordinal] = $batch;
}
else {
$batch = $batches[$server_ordinal];
}
$batch->write(" $key");
$batch_keys[$server_ordinal][] = $key;
}
//finalize batches, add them to executor
$executor = $libredis->create_executor();
foreach($batches as $server_ordinal=>$batch) {
$batch->write("\r\n", 1);
$server_addr = $ketama->get_server_address($server_ordinal);
$connection = $libredis->get_connection($server_addr);
$executor->add($connection, $batch);
}
//execute in parallel until all complete
$executor->execute(500);
//build up results
$results = array();
foreach($batches as $server_ordinal=>$batch) {
//read the single multibulk reply
$batch->next_reply($mb_reply_type, $mb_reply_value, $mb_reply_length);
if(RT_ERROR != $mb_reply_type) {
//read the individual bulk replies in the multibulk reply
foreach($batch_keys[$server_ordinal] as $key) {
$batch->next_reply($reply_type, $reply_value, $reply_length);
if(RT_BULK == $reply_type) {
$results[$key] = $reply_value;
}
}
}
}
return $results;
}
function test_mget()
{
global $libredis;
global $ip;
$ketama = $libredis->create_ketama();
$ketama->add_server($ip, 6379, 100);
$ketama->add_server($ip, 6380, 100);
$ketama->create_continuum();
//$N = 200000;
$N = 20000;
$M = 200;
$connection1 = $libredis->get_connection("$ip:6379");;
$connection2 = $libredis->get_connection("$ip:6380");
$keys = array();
for($i = 0; $i < $M; $i++) {
$key = "piet$i";
$value = "blaat$i";
$connection1->set($key, $value);
$connection2->set($key, $value);
$keys[] = $key;
}
$start = microtime(true);
for($i = 0; $i < $N; $i++) {
mget($keys, $ketama);
//print_r(mget($keys, $ketama));
//echo $i, PHP_EOL;
}
$end = microtime(true);
echo "per/sec ", $N * $M / ($end - $start), PHP_EOL;
echo "msec per mget ", ($end - $start) / $N * 1000.0, PHP_EOL;
}
function test_simple() {
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$key = 'library';
for($i = 0; $i < 1; $i++) {
$batch = $libredis->create_batch("GET $key\r\n", 1);
$executor = $libredis->create_executor();
$executor->add($connection, $batch);
$executor->execute(400);
$batch->next_reply($reply_type, $reply_value, $reply_length);
print_r($reply_value);
echo gettype($reply_value), PHP_EOL;
}
}
function test_multibulk_reply() {
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$batch = $libredis->create_batch("HGETALL test\r\n", 1);
$executor = $libredis->create_executor();
$executor->add($connection, $batch);
$executor->execute(400);
$batch->next_reply($reply_type, $reply_value, $reply_length);
print_r($reply_type);
print_r($reply_value);
$batch = $libredis->create_batch("HSET test2 piet 3\r\nbar\r\n", 1);
$executor = $libredis->create_executor();
$executor->add($connection, $batch);
$executor->execute(400);
echo "HSET DONE", PHP_EOL;
$batch = $libredis->create_batch("HGETALL test2\r\n", 1);
$executor = $libredis->create_executor();
$executor->add($connection, $batch);
$executor->execute(400);
$batch->next_reply($reply_type, $reply_value, $reply_length);
print_r($reply_type);
print_r($reply_value);
}
function test_leak() {
global $libredis;
$batches = array();
$ketamas = array();
$executors = array();
for($i = 0; $i < 100; $i++) {
$batches[] = $libredis->create_batch("GET $key\r\n", 1);
$ketama[] = $libredis->create_ketama();
$executors[] = $libredis->create_executor();
}
$x = new Blaat();
//throw new Exception("piet");
}
function test_destroy() {
global $libredis;
$connection = $libredis->get_connection("$ip:6379");
$connection = $libredis->get_connection("$ip:6379");
$connection = $libredis->get_connection("$ip:6379");
}
function test_integer_reply()
{
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$batch = $libredis->create_batch("INCR incr_test\r\n", 1);
$connection->execute($batch);
while($level = $batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo "start", PHP_EOL;
echo "\ttype ", $reply_type, PHP_EOL;
echo "\tval ", $reply_value, " (", gettype($reply_value), ")", PHP_EOL;
echo "\tlen ", $reply_length, PHP_EOL;
echo "\tlevel ", $level, PHP_EOL;
echo "end", PHP_EOL;
}
}
function test_connections()
{
global $libredis;
for($i = 0; $i < 10; $i++) {
$connection1 = $libredis->get_connection("$ip:6379");
$connection2 = $libredis->get_connection("$ip:6380");
}
}
function test_convenience()
{
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$connection->set("piet", "test12345");
$connection->set("klaas", "test67890");
echo $connection->get("piet");
echo $connection->get("klaas");
$batch = $libredis->create_batch();
$batch->cmd("MGET", "piet", "klaas", "aap");
$connection = $libredis->get_connection("$ip:6379");
$connection->execute($batch);
while($batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo 'repl', ' ', $reply_type, ' ', $reply_value, PHP_EOL;
}
$batch = $libredis->create_batch();
$batch->set("blaat", "aap");
$batch->set("joop", "blaat");
$connection = $libredis->get_connection("$ip:6379");
$connection->execute($batch);
while($batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo $reply_value, PHP_EOL;
}
$batch = $libredis->create_batch();
$batch->get("blaat");
$batch->get("joop");
$connection->execute($batch);
while($batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo $reply_value, PHP_EOL;
}
}
function test_error()
{
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$batch = $libredis->create_batch();
$executor = $libredis->create_executor();
for($i = 0; $i < 2000; $i++) {
$executor->add($connection, $batch);
}
}
function test_timeout()
{
global $libredis;
global $ip;
while(true) {
$connection = $libredis->get_connection("$ip:6390");
if(false === $connection->set("blaat", "aap", 100)) {
echo "could not set value, error was: '", $libredis->last_error(), "'", PHP_EOL;
}
if(false === $connection->get("blaat", 100)) {
echo "could not get value, error was: '", $libredis->last_error(), "'", PHP_EOL;
}
$executor = $libredis->create_executor();
$batch = $libredis->create_batch();
$batch->get('blaat');
$executor->add($connection, $batch);
if(false === $executor->execute(1000)) {
echo "could not execute value, error was: '", $libredis->last_error(), "'", PHP_EOL;
}
}
}
function test_order()
{
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
$batch = $libredis->create_batch();
$executor = $libredis->create_executor();
$batch->write("SET foo 3\r\nbar\r\n", 1);
$batch->write("GET foo\r\n", 1);
$batch->write("MGET foo foo2\r\n", 1);
$batch->write("SET foo2 4\r\nbar2\r\n", 1);
$batch->write("GET foo2\r\n", 1);
$batch->write("MGET foo foo2\r\n", 1);
$executor->add($connection, $batch);
$executor->execute(500);
while($level = $batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo $level, " rt: ", $reply_type, " rv: '", $reply_value, "'", PHP_EOL;
}
}
function test_bla()
{
global $libredis;
global $ip;
$connection = $libredis->get_connection("$ip:6379");
//$batch = $libredis->create_batch("GET blaat\r\n", 1);
$key = 'blaat';
$batch = $libredis->create_batch('*2'.EOL.'$3'.EOL.'GET'.EOL.'$'.strlen($key).EOL.$key.EOL,1);
$connection->execute($batch, 400);
while($batch->next_reply($reply_type, $reply_value, $reply_length)) {
echo 'type ', $reply_type, PHP_EOL;
echo 'val ', $reply_value, PHP_EOL;
}
}
//test_multibulk_reply();
//test_bla();
//test_ketama();
//test_simple();
//test_leak();
//test_mget();
//test_destroy();
//test_integer_reply();
//test_connections();
test_convenience();
//test_error();
//test_timeout();
//test_order();
echo "done...!", PHP_EOL;
?>