-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisClient.cpp
More file actions
406 lines (299 loc) · 8.06 KB
/
RedisClient.cpp
File metadata and controls
406 lines (299 loc) · 8.06 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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#include <iostream>
#include <thread>
#include <vector>
#include <chrono>
#include <exception>
#include "headers/RedisClient.h"
using namespace sw::redis;
using namespace std;
RedisClient::RedisClient(string host_name, int record_size) : DBClient()
{
dataVal = DBClient::getEntryVal('a', record_size);
newVal = DBClient::getEntryVal('b', record_size);
options.host = host_name;
options.port = 6379;
pool_options.size = 50;
}
RedisClient::~RedisClient() {}
/**
* see description at DBClient::connect()
*/
void RedisClient::connect()
{
try
{
Redis *redis = new Redis(options, pool_options);
// verifying the connection by sending a command
redis->set("foo", "bar");
redis->del("foo");
cout << "CONNECTED TO REDIS!\n" << endl;
redis->command<void>("quit");
}
catch (const Error &e)
{
cout << "UNABLE TO CONNECT TO REDIS\n" << endl;
exit(1);
}
}
/**
* This method is used to create the running threads. It first calculates how many
* entries are allocated to each thread. Once it completes that it would then add
* a thread that performs the provided lambda function within its given range into the
* thread pool. After creating and adding the threads to the pool it would wait until
* all are finsihed and it is timing how long it takes to do so
*
* @tparam Lambda
* @param f - the lambda function to have each thread run
* @param begin - the starting entry key
* @param random - the ranomize key option
* @param n - used to define how many entries in total will be handled. It is predefined to 0
* - if n == 0 ==> handle the number of entries that the user have defined
* - if n != 0 ==> handle the number of entries that is defined by this parameter
*
* @return the time it took to complete all the threads that were used
*/
template<typename Lambda>
double RedisClient::run_threads(Lambda f, int begin, bool random, int n)
{
vector<thread> thread_pool;
int numOfEntries = (n == 0) ? DBClient::entries : n;
// makes adjustments on the number of threads to use based on the number of entries
threads = (threads > numOfEntries) ? numOfEntries : threads;
int perThread = numOfEntries / threads;
int remainingThreads = numOfEntries % threads;
int beginRange, endRange;
int runningCount = begin;
auto start = chrono::high_resolution_clock::now();
for (int i = 0; i < threads; i++)
{
beginRange = runningCount;
endRange = beginRange + perThread;
if (remainingThreads > 0)
{
remainingThreads--;
endRange++;
}
thread_pool.push_back(thread(f, beginRange, endRange, random));
runningCount = endRange;
}
for (auto &thread : thread_pool)
{
thread.join();
}
auto end = chrono::high_resolution_clock::now();
return DBClient::calculateTime(start, end);
}
/**
* see description at DBClient::initializeDB()
*/
double RedisClient::initializeDB()
{
double time;
// attempt doing a clear of the database first before initializing the db
try {
Redis* redis = new Redis(options, pool_options);
redis->command<void>("flushall");
redis->command<void>("quit");
cout << "Creating the SDB..." << endl;
} catch (const Error &e) {
cout << "ERROR DURING INITIALIZATION" << endl;
cerr << e.what() << endl;
time = -1.0;
}
auto createDB = [&](int start, int end, bool random) {
try {
Redis* redis = new Redis(options, pool_options);
for (int64_t i = start; i < end; i++)
{
auto key = to_string(i);
redis->set(key, dataVal);
}
redis->command<void>("quit");
} catch (const Error &e) {
cout << "ERROR CREATING THE DATABASE" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
time = run_threads(createDB, 1, false, 1000000);
cout << "SDB Creation Completed!\n" << endl;
return time;
}
/**
* see a description at DBClient::readEntry
*/
double RedisClient::readEntry(bool randomOption)
{
auto read = [&](int start, int end, bool random) {
try
{
Redis *redis = new Redis(options, pool_options);
for (int i = start; i < end; i++)
{
srand(time(0));
int maxNum = entries / threads;
if (threads > entries)
{
maxNum = threads;
}
int randomNum = (rand() % maxNum) + 1;
int key = (random) ? randomNum : i;
redis->get(to_string(key));
}
redis->command<void>("quit");
}
catch (const Error &e)
{
cerr << "ERROR DURING READ" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
return run_threads(read, 1, randomOption);
}
/**
* see description at DBClient::insertEntry()
*/
double RedisClient::insertEntry(int key)
{
auto insert = [&](int start, int end, bool random) {
try {
Redis* redis = new Redis(options, pool_options);
for (int64_t i = start; i < end; i++)
{
redis->set(to_string(i), dataVal);
}
redis->command<void>("quit");
} catch (const Error &e) {
cerr << "ERROR DURING INSERT" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
return run_threads(insert, key, false);
}
/**
* see description at DBClient::updateEntry()
*/
double RedisClient::updateEntry(int key, bool randomOption)
{
auto update = [&](int start, int end, bool random) {
try
{
Redis *redis = new Redis(options, pool_options);
for (int i = start; i < end; i++)
{
srand(time(0));
int maxNum = entries / threads;
if (threads > entries)
{
maxNum = threads;
}
int randomNum = (rand() % maxNum) + 1;
int key = (random) ? randomNum : i;
redis->set(to_string(key), newVal);
}
redis->command<void>("quit");
}
catch (const Error &e)
{
cerr << "ERROR DURING UPDATE" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
return run_threads(update, key, randomOption);
}
/**
* see description at DBClient::deleteEntry()
*/
double RedisClient::deleteEntry(int key, bool randomOption)
{
auto deletion = [&](int start, int end, bool random) {
try
{
Redis *redis = new Redis(options, pool_options);
for (int i = start; i < end; i++)
{
srand(time(0));
int maxNum = entries / threads;
if (threads > entries)
{
maxNum = threads;
}
int randomNum = (rand() % maxNum) + 1;
int key = (random) ? randomNum : i;
redis->del(to_string(key));
}
redis->command<void>("quit");
}
catch (const Error &e)
{
cerr << "ERROR DURING DELETION" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
return run_threads(deletion, key, randomOption);
}
/*
* see description at DBClient::simultaneousTasks()
*/
double RedisClient::simultaneousTasks(bool randomOption)
{
auto read_and_write = [&](int start, int end, bool random) {
Redis *redis = new Redis(options, pool_options);
auto read_write = [&](int key) {
try
{
redis->get(to_string(key));
redis->set(to_string(key), newVal);
}
catch (const Error &e)
{
cout << "ERROR IN READING AND WRITING" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
for (int i = start; i < end; i++)
{
srand(time(0));
int maxNum = entries / threads;
if (threads > entries)
{
maxNum = threads;
}
int randomNum = (rand() % maxNum) + 1;
int key = (random) ? randomNum : i;
read_write(key);
}
redis->command<void>("quit");
};
return run_threads(read_and_write, 1, randomOption);
}
/*
* see description at DBClient::performTransactions()
*/
double RedisClient::performTransactions(int key)
{
auto transaction = [&](int start, int end, bool random) {
Redis* redis = new Redis(options, pool_options);
auto write_and_delete = [&](int64_t key) {
try {
redis->set(to_string(key), dataVal);
redis->del(to_string(key));
} catch (const Error &e) {
cout << "ERROR UPDATING AND DELETING" << endl;
cerr << e.what() << endl;
exit(-1);
}
};
for (int64_t i = start; i < end; i++)
{
write_and_delete(i);
}
redis->command<void>("quit");
};
return run_threads(transaction, key, false);
}