forked from redis/node-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi_bench.js
131 lines (111 loc) · 3.21 KB
/
multi_bench.js
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
var redis = require("./index"),
num_clients = parseInt(process.argv[2]) || 50,
active_clients = 0,
clients = new Array(num_clients),
num_requests = 20000,
issued_requests = 0,
latency = new Array(num_requests),
tests = [],
test_start,
client_options = {
return_buffers: false
};
redis.debug_mode = false;
tests.push({
descr: "PING",
command: ["ping"]
});
tests.push({
descr: "SET",
command: ["set", "foo_rand000000000000", "bar"]
});
tests.push({
descr: "GET",
command: ["get", "foo_rand000000000000"]
});
tests.push({
descr: "INCR",
command: ["incr", "counter_rand000000000000"]
});
tests.push({
descr: "LPUSH",
command: ["lpush", "mylist", Array(8).join("-")]
});
tests.push({
descr: "LRANGE (10 elements)",
command: ["lrange", "mylist", "0", "9"]
});
tests.push({
descr: "LRANGE (100 elements)",
command: ["lrange", "mylist", "0", "99"]
});
function create_clients(callback) {
if (active_clients === num_clients) {
// common case is all clients are already created
console.log("create_clients: all clients already created " + num_clients);
callback();
} else {
var client, connected = active_clients;
while (active_clients < num_clients) {
client = clients[active_clients++] = redis.createClient(6379, "127.0.0.1", client_options);
client.on("connect", function() {
// Fire callback when all clients are connected
connected += 1;
if (connected === num_clients) {
callback();
}
});
// TODO - need to check for client disconnect
client.on("error", function (msg) {
console.log("Connect problem:" + msg.stack);
});
}
}
}
function issue_request(client, test, cmd, args) {
var i = issued_requests++;
latency[i] = Date.now();
client[cmd](args, function() {
latency[i] = Date.now() - latency[i];
if (issued_requests < num_requests) {
issue_request(client, test, cmd, args);
} else {
client.end();
if (--active_clients == 0)
test_complete(test);
}
});
}
function test_run(test) {
create_clients(function() {
var i = num_clients,
cmd = test.command[0],
args = test.command.slice(1);
test_start = Date.now();
issued_requests = 0;
while(i-- && issued_requests < num_requests) {
issue_request(clients[i], test, cmd, args);
}
});
}
function test_complete(test) {
var min, max, sum, avg;
var total_time = Date.now() - test_start;
var op_rate = (issued_requests / (total_time / 1000.0)).toFixed(2);
var i;
latency.sort();
min = latency[0];
max = latency[issued_requests-1];
for (sum = 0, i = 0; i < issued_requests; i++)
sum += latency[i];
avg = (sum / issued_requests).toFixed(3);
console.log(test.descr + ": " + issued_requests + " ops " + op_rate + " ops/sec " + min + "/" + max + "/" + avg);
next();
}
function next() {
var test = tests.shift();
if (test) {
test_run(test);
}
}
next();