data_types.cpp
1.55 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
/**
* Test special data type templates for multi-element replies using Redox.
*/
#include <iostream>
#include "../src/redox.hpp"
#include <set>
#include <unordered_set>
#include <vector>
using namespace std;
int main(int argc, char* argv[]) {
redox::Redox rdx; // Initialize Redox (default host/port)
if(!rdx.start()) return 1; // Start the event loop
rdx.del("mylist");
rdx.command_blocking("LPUSH mylist 1 2 3 4 5 6 7 8 9 10");
rdx.command<vector<string>>("LRANGE mylist 0 4",
[](const string& cmd, const vector<string>& reply){
cout << "Last 5 elements as a vector: ";
for(const string& s : reply) cout << s << " ";
cout << endl;
},
[](const string& cmd, int status) {
cerr << "Error with LRANGE: " << status << endl;
}
);
rdx.command<unordered_set<string>>("LRANGE mylist 0 4",
[](const string& cmd, const unordered_set<string>& reply){
cout << "Last 5 elements as an unordered set: ";
for(const string& s : reply) cout << s << " ";
cout << endl;
},
[](const string& cmd, int status) {
cerr << "Error with LRANGE: " << status << endl;
}
);
rdx.command<set<string>>("LRANGE mylist 0 4",
[&rdx](const string& cmd, const set<string>& reply){
cout << "Last 5 elements as a set: ";
for(const string& s : reply) cout << s << " ";
cout << endl;
rdx.stop_signal();
},
[&rdx](const string& cmd, int status) {
cerr << "Error with LRANGE: " << status << endl;
rdx.stop_signal();
}
);
rdx.block(); // Shut down the event loop
}