Skip to content

Commit d163ba4

Browse files
committed
local commit to reset
1 parent bc3c517 commit d163ba4

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed

benchmarks/python/glide_sync_100

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"client": "glide_sync", "data_size": 100, "tps": 4258, "client_count": 1, "is_cluster": true, "get_existing_p50_latency": 0.217, "get_existing_p90_latency": 0.339, "get_existing_p99_latency": 0.209, "get_existing_average_latency": 0.239, "get_existing_std_dev": 0.079, "get_non_existing_p50_latency": 0.19, "get_non_existing_p90_latency": 0.314, "get_non_existing_p99_latency": 0.184, "get_non_existing_average_latency": 0.212, "get_non_existing_std_dev": 0.101, "set_p50_latency": 0.201, "set_p90_latency": 0.321, "set_p99_latency": 0.194, "set_average_latency": 0.222, "set_std_dev": 0.086}]

benchmarks/python/glide_sync_4000

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"client": "glide_sync", "data_size": 4000, "tps": 4412, "client_count": 1, "is_cluster": true, "get_existing_p50_latency": 0.209, "get_existing_p90_latency": 0.275, "get_existing_p99_latency": 0.199, "get_existing_average_latency": 0.226, "get_existing_std_dev": 0.064, "get_non_existing_p50_latency": 0.182, "get_non_existing_p90_latency": 0.246, "get_non_existing_p99_latency": 0.175, "get_non_existing_average_latency": 0.199, "get_non_existing_std_dev": 0.042, "set_p50_latency": 0.219, "set_p90_latency": 0.269, "set_p99_latency": 0.21, "set_average_latency": 0.233, "set_std_dev": 0.041}]

benchmarks/python/redispy_sync_100

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"client": "redispy", "data_size": 100, "tps": 4050, "client_count": 1, "is_cluster": true, "get_existing_p50_latency": 0.226, "get_existing_p90_latency": 0.341, "get_existing_p99_latency": 0.215, "get_existing_average_latency": 0.248, "get_existing_std_dev": 0.086, "get_non_existing_p50_latency": 0.203, "get_non_existing_p90_latency": 0.321, "get_non_existing_p99_latency": 0.197, "get_non_existing_average_latency": 0.226, "get_non_existing_std_dev": 0.085, "set_p50_latency": 0.215, "set_p90_latency": 0.33, "set_p99_latency": 0.209, "set_average_latency": 0.238, "set_std_dev": 0.07}]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"client": "redispy", "data_size": 4000, "tps": 4050, "client_count": 1, "is_cluster": true, "get_existing_p50_latency": 0.229, "get_existing_p90_latency": 0.284, "get_existing_p99_latency": 0.217, "get_existing_average_latency": 0.244, "get_existing_std_dev": 0.045, "get_non_existing_p50_latency": 0.205, "get_non_existing_p90_latency": 0.26, "get_non_existing_p99_latency": 0.198, "get_non_existing_average_latency": 0.221, "get_non_existing_std_dev": 0.044, "set_p50_latency": 0.24, "set_p90_latency": 0.285, "set_p99_latency": 0.232, "set_average_latency": 0.255, "set_std_dev": 0.077}]

go/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ fn create_client_internal(
144144
let redis_error = err.into();
145145
errors::error_message(&redis_error)
146146
})?;
147-
let addresses = vec![NodeAddress { host: "localhost".to_string(), port: 6379}];
147+
let addresses = vec![NodeAddress { host: "clustercfg.barshaul-babushka-cluster-test-tls-1.ez432c.use1.cache.amazonaws.com".to_string(), port: 6379}];
148148
let use_tls = true;
149149
let client = runtime
150150
.block_on(GlideClient::new(ConnectionRequest {addresses, tls_mode: if use_tls {

python/python/glide/glide_sync_client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,6 @@ def _to_c_strings(self, args):
146146
c_strings.append(self.ffi.cast("size_t", self.ffi.from_buffer(arg_bytes)))
147147
string_lengths.append(len(arg_bytes))
148148

149-
# Debugging
150-
print(f"arg={arg}, arg_bytes={list(arg_bytes)}, len={len(arg_bytes)}, c_str={c_strings[-1]}")
151-
152149
# Return C-compatible arrays and keep buffers alive
153150
return (
154151
self.ffi.new("size_t[]", c_strings),

0 commit comments

Comments
 (0)