-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[to remove] Java benchmarks: add Jedis
and Lettuce
clients (sync and async)
#540
Changes from all commits
06574ea
5990767
6ae93f5
8203c4d
e517744
2a11e9a
cbb0dcb
5f51a5b
52df672
84f0efc
1983974
6c1fb45
46d0cf6
d526f96
436da8f
016f5f6
e57c1ff
8664d05
b15f93e
1bab56a
d99d27a
540f49a
65090b4
8a0449d
c3d235a
fe9bb98
d533b7f
9cbc9c2
b00a205
a62fe92
30f2f62
05590b0
bcf188c
b50d57e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -167,7 +167,7 @@ async function run_clients( | |
num_of_tasks: num_of_concurrent_tasks, | ||
data_size, | ||
tps, | ||
clientCount: clients.length, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
client_count: clients.length, | ||
is_cluster, | ||
...set_latency_results, | ||
...get_existing_latency_results, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -226,7 +226,7 @@ async def run_clients( | |
"num_of_tasks": num_of_concurrent_tasks, | ||
"data_size": data_size, | ||
"tps": tps, | ||
"clientCount": len(clients), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
"client_count": len(clients), | ||
"is_cluster": is_cluster, | ||
}, | ||
**get_existing_latency_results, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,7 @@ async fn perform_benchmark(args: Args) { | |
Value::Number((number_of_operations as i64 * 1000 / stopwatch.elapsed_ms()).into()), | ||
); | ||
results_json.insert( | ||
"clientCount".to_string(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
"client_count".to_string(), | ||
Value::Number(args.client_count.into()), | ||
); | ||
results_json.insert( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[env] | ||
BABUSHKA_NAME = { value = "javababushka", force = true } | ||
BABUSHKA_VERSION = "0.1.0" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please try to keep PRs concise, and fix a single issue per-PR (or at least touch a single area of code). This and changes to non-java benchmarks, isn't relevant to this PR.