speed_test_sync.cpp
1.33 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
/**
* Redox test
* ----------
* Increment a key on Redis using synchronous commands in a loop.
*/
#include <iostream>
#include "redox.hpp"
using namespace std;
using namespace redox;
double time_s() {
unsigned long ms = chrono::system_clock::now().time_since_epoch() / chrono::microseconds(1);
return (double)ms / 1e6;
}
int main(int argc, char* argv[]) {
Redox rdx = {"localhost", 6379};
if(!rdx.connect()) return 1;
if(rdx.commandSync("SET simple_loop:count 0")) {
cout << "Reset the counter to zero." << endl;
} else {
cerr << "Failed to reset counter." << endl;
return 1;
}
string cmd_str = "INCR simple_loop:count";
double t = 5; // s
cout << "Sending \"" << cmd_str << "\" synchronously for " << t << "s..." << endl;
double t0 = time_s();
double t_end = t0 + t;
int count = 0;
while(time_s() < t_end) {
Command<int>& c = rdx.commandSync<int>(cmd_str);
if(!c.ok()) cerr << "Bad reply, code: " << c.status() << endl;
c.free();
count++;
}
double t_elapsed = time_s() - t0;
double actual_freq = (double)count / t_elapsed;
long final_count = stol(rdx.get("simple_loop:count"));
cout << "Sent " << count << " commands in " << t_elapsed << "s, "
<< "that's " << actual_freq << " commands/s." << endl;
cout << "Final value of counter: " << final_count << endl;
return 0;
}