redis-benchmarks-specification 0.1.259__py3-none-any.whl → 0.1.260__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of redis-benchmarks-specification might be problematic. Click here for more details.
- redis_benchmarks_specification/__common__/runner.py +5 -0
- redis_benchmarks_specification/__runner__/args.py +5 -0
- redis_benchmarks_specification/__runner__/runner.py +20 -5
- redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +34 -0
- {redis_benchmarks_specification-0.1.259.dist-info → redis_benchmarks_specification-0.1.260.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.259.dist-info → redis_benchmarks_specification-0.1.260.dist-info}/RECORD +11 -8
- {redis_benchmarks_specification-0.1.259.dist-info → redis_benchmarks_specification-0.1.260.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.259.dist-info → redis_benchmarks_specification-0.1.260.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.259.dist-info → redis_benchmarks_specification-0.1.260.dist-info}/entry_points.txt +0 -0
|
@@ -106,11 +106,16 @@ def extract_testsuites(args):
|
|
|
106
106
|
testsuite_spec_files = get_benchmark_specs(
|
|
107
107
|
testsuites_folder, args.test, args.tests_regexp
|
|
108
108
|
)
|
|
109
|
+
testsuite_spec_files.sort()
|
|
109
110
|
logging.info(
|
|
110
111
|
"There are a total of {} test-suites in folder {}".format(
|
|
111
112
|
len(testsuite_spec_files), testsuites_folder
|
|
112
113
|
)
|
|
113
114
|
)
|
|
115
|
+
if len(testsuite_spec_files) < 11:
|
|
116
|
+
for test in testsuite_spec_files:
|
|
117
|
+
logging.info(f"Test {test}")
|
|
118
|
+
|
|
114
119
|
return testsuite_spec_files
|
|
115
120
|
|
|
116
121
|
|
|
@@ -220,17 +220,26 @@ def prepare_memtier_benchmark_parameters(
|
|
|
220
220
|
resp_version=None,
|
|
221
221
|
override_memtier_test_time=0,
|
|
222
222
|
override_test_runs=1,
|
|
223
|
+
unix_socket="",
|
|
223
224
|
):
|
|
224
225
|
arbitrary_command = False
|
|
225
226
|
benchmark_command = [
|
|
226
227
|
full_benchmark_path,
|
|
227
|
-
"--port",
|
|
228
|
-
f"{port}",
|
|
229
|
-
"--server",
|
|
230
|
-
f"{server}",
|
|
231
228
|
"--json-out-file",
|
|
232
229
|
local_benchmark_output_filename,
|
|
233
230
|
]
|
|
231
|
+
if unix_socket != "":
|
|
232
|
+
benchmark_command.extend(["--unix-socket", unix_socket])
|
|
233
|
+
logging.info(f"Using UNIX SOCKET to connect {unix_socket}")
|
|
234
|
+
else:
|
|
235
|
+
benchmark_command.extend(
|
|
236
|
+
[
|
|
237
|
+
"--port",
|
|
238
|
+
f"{port}",
|
|
239
|
+
"--server",
|
|
240
|
+
f"{server}",
|
|
241
|
+
]
|
|
242
|
+
)
|
|
234
243
|
if password is not None:
|
|
235
244
|
benchmark_command.extend(["--authenticate", password])
|
|
236
245
|
if tls_enabled:
|
|
@@ -430,6 +439,7 @@ def process_self_contained_coordinator_stream(
|
|
|
430
439
|
|
|
431
440
|
port = args.db_server_port
|
|
432
441
|
host = args.db_server_host
|
|
442
|
+
unix_socket = args.unix_socket
|
|
433
443
|
password = args.db_server_password
|
|
434
444
|
oss_cluster_api_enabled = args.cluster_mode
|
|
435
445
|
ssl_cert_reqs = "required"
|
|
@@ -606,7 +616,7 @@ def process_self_contained_coordinator_stream(
|
|
|
606
616
|
)
|
|
607
617
|
continue
|
|
608
618
|
if "preload_tool" in benchmark_config["dbconfig"]:
|
|
609
|
-
if args.skip_tests_with_preload_via_tool is
|
|
619
|
+
if args.skip_tests_with_preload_via_tool is True:
|
|
610
620
|
logging.warning(
|
|
611
621
|
"Skipping test {} giving it implies dataset preload via tool".format(
|
|
612
622
|
test_name
|
|
@@ -648,6 +658,7 @@ def process_self_contained_coordinator_stream(
|
|
|
648
658
|
args.benchmark_local_install,
|
|
649
659
|
password,
|
|
650
660
|
oss_cluster_api_enabled,
|
|
661
|
+
unix_socket,
|
|
651
662
|
)
|
|
652
663
|
if res is False:
|
|
653
664
|
logging.warning(
|
|
@@ -748,6 +759,7 @@ def process_self_contained_coordinator_stream(
|
|
|
748
759
|
resp_version,
|
|
749
760
|
override_memtier_test_time,
|
|
750
761
|
override_test_runs,
|
|
762
|
+
unix_socket,
|
|
751
763
|
)
|
|
752
764
|
|
|
753
765
|
if (
|
|
@@ -1151,6 +1163,7 @@ def data_prepopulation_step(
|
|
|
1151
1163
|
benchmark_local_install=False,
|
|
1152
1164
|
password=None,
|
|
1153
1165
|
oss_cluster_api_enabled=False,
|
|
1166
|
+
unix_socket="",
|
|
1154
1167
|
):
|
|
1155
1168
|
result = True
|
|
1156
1169
|
# setup the benchmark
|
|
@@ -1193,6 +1206,8 @@ def data_prepopulation_step(
|
|
|
1193
1206
|
tls_cacert,
|
|
1194
1207
|
resp_version,
|
|
1195
1208
|
override_memtier_test_time_preload,
|
|
1209
|
+
1,
|
|
1210
|
+
unix_socket,
|
|
1196
1211
|
)
|
|
1197
1212
|
if arbitrary_command is True and oss_cluster_api_enabled:
|
|
1198
1213
|
logging.warning(
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 10M keys with a data size of 10 Bytes for each key.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 10000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '--key-maximum 10000000 -n allkeys --key-prefix "" --data-size 10 --ratio 1:0 --key-pattern P:P -c 50 -t 2 --hide-histogram --key-minimum 1'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '--key-maximum 10000000 --key-minimum 1 --pipeline 100 --key-prefix "" --distinct-client-seed --data-size 10 --ratio 0:1 --key-pattern R:R -c 10 -t 10 --hide-histogram --test-time 120'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '10'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
tested-groups:
|
|
33
|
+
- string
|
|
34
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 10 Bytes.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
build-variants:
|
|
17
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
18
|
+
- dockerhub
|
|
19
|
+
clientconfig:
|
|
20
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
21
|
+
tool: memtier_benchmark
|
|
22
|
+
arguments: '"--pipeline" "100" "--data-size" "10" --distinct-client-seed --key-prefix "" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 1000000 --test-time 120 -c 10 -t 10 --hide-histogram'
|
|
23
|
+
resources:
|
|
24
|
+
requests:
|
|
25
|
+
cpus: '10'
|
|
26
|
+
memory: 2g
|
|
27
|
+
|
|
28
|
+
tested-groups:
|
|
29
|
+
- string
|
|
30
|
+
priority: 17
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 10 Bytes for each key.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '--key-maximum 1000000 -n allkeys --key-prefix "" --data-size 10 --ratio 1:0 --key-pattern P:P -c 50 -t 2 --hide-histogram --key-minimum 1'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '--key-maximum 1000000 --key-minimum 1 --pipeline 100 --key-prefix "" --distinct-client-seed --data-size 10 --ratio 0:1 --key-pattern R:R -c 10 -t 10 --hide-histogram --test-time 120'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '10'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
tested-groups:
|
|
33
|
+
- string
|
|
34
|
+
priority: 1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.260
|
|
4
4
|
Summary: The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute.
|
|
5
5
|
Author: filipecosta90
|
|
6
6
|
Author-email: filipecosta.90@gmail.com
|
|
@@ -15,7 +15,7 @@ redis_benchmarks_specification/__common__/builder_schema.py,sha256=kfDpRIk7NkJrb
|
|
|
15
15
|
redis_benchmarks_specification/__common__/env.py,sha256=kvJ8Ll-fvI_Tc0vynrzUEr22TqnJizzvJ4Lu9RjNr_M,3119
|
|
16
16
|
redis_benchmarks_specification/__common__/github.py,sha256=9TZtnISsSgXTSAN_VQejo5YRPDPhlU0gjxgKGPw_sP8,10699
|
|
17
17
|
redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--Tk6otAVIf9YR3g3KGeUpiW4,834
|
|
18
|
-
redis_benchmarks_specification/__common__/runner.py,sha256=
|
|
18
|
+
redis_benchmarks_specification/__common__/runner.py,sha256=2IpMl0IEHi2IZvfLc4_h0e-E3ZfnlB8EkCA_SE8VDCY,7033
|
|
19
19
|
redis_benchmarks_specification/__common__/spec.py,sha256=eTF5559epBB0FrJPx-jRDQVeP_ZVOgyC7Vjxr2xk6fo,3262
|
|
20
20
|
redis_benchmarks_specification/__common__/timeseries.py,sha256=_LJFtC5sVP7DTaLZaIzv5g7wRxPTQZRwFIYvWX4p4N8,50533
|
|
21
21
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
@@ -23,8 +23,8 @@ redis_benchmarks_specification/__compare__/args.py,sha256=FlKD1wutBoKxeahpXw1gY2
|
|
|
23
23
|
redis_benchmarks_specification/__compare__/compare.py,sha256=brLymkKXa1ZzV--27LOFuzvFUQwGWKA-lKN7Bnbvlzg,57029
|
|
24
24
|
redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gqDKgzvNJnkGNKY,491
|
|
25
25
|
redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
26
|
-
redis_benchmarks_specification/__runner__/args.py,sha256=
|
|
27
|
-
redis_benchmarks_specification/__runner__/runner.py,sha256=
|
|
26
|
+
redis_benchmarks_specification/__runner__/args.py,sha256=ipEYOM3f4O4ZZH6sQfIc8529oaC1RZCSjcL_uyHhcAU,7529
|
|
27
|
+
redis_benchmarks_specification/__runner__/runner.py,sha256=A4uUkYn7KRBO5xdiNe8NvPC6h1t8G1NHrb8pmWQGcwo,49476
|
|
28
28
|
redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
29
29
|
redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=VHjWWjZ0bs05rcQaeZYSFxf1d_0t02PRoXgfrhfF5nU,5770
|
|
30
30
|
redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=OVHqJzDgeSSRfUSiKp1ZTAVv14PvSbk-5yJsAAoUfpw,936
|
|
@@ -198,6 +198,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5
|
|
|
198
198
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml,sha256=MPo4livD4Rl9ExUzTghtSEg6pUQoL55jkAhfNF6BH7o,914
|
|
199
199
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml,sha256=woHfOPYnDjh8nn5bCAALzh2-b5VpljhvioY6vE7KzD4,941
|
|
200
200
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml,sha256=qHoiZqldaLl2Es7r-1_cZFSIr9J0LpSxeqcF11iSC_Y,911
|
|
201
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256=OvkDYP7AGaR6o70YW6gEeNqfhp1m9vtzCBMqWZ960aU,1089
|
|
201
202
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml,sha256=Qd3odpq9rr95qogVIHvXAyyFJQtqfiswrAPuGg0zb6s,1274
|
|
202
203
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml,sha256=q--89owV1uh0Mpb1EBriORMPNPv9Jrb4GRUstUSwtvI,1270
|
|
203
204
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml,sha256=AtBn-eU4ZiVVOV_gf3qiNSmDxatEiKMl3k6flC8hYdc,1084
|
|
@@ -240,6 +241,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-
|
|
|
240
241
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values-pipeline-10.yml,sha256=w-xyDU5zG1eQ9uxY46U2IhWo5eU1w-aAmqDFsZN-94A,820
|
|
241
242
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values.yml,sha256=gjviRmZrNaJw5iaZYh7o9X4pNCCnSdyR3cq_CQ-VNQQ,845
|
|
242
243
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-10.yml,sha256=h2SKE3sXs88fhhk18olwAxVgxOuxwLqvUjFY0kovytk,842
|
|
244
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml,sha256=LO2cZ75mILDRhMLSYzsKLrIfwHRz4cIQ_IDkCFHeVj4,872
|
|
243
245
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100.yml,sha256=dQgK1wfCdc070N3dK7G-4qomgHm1n0lMlCRhpyqt7BY,844
|
|
244
246
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-50.yml,sha256=pq3dJ3Kn0ws9sFrj-_4Kqe9KIY2rpy0JUMSv4dbxxe4,842
|
|
245
247
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-500.yml,sha256=s0I485dXIzLFuS88YX7VHZksCb68gQvDr7MM9VLfaMU,844
|
|
@@ -255,6 +257,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.
|
|
|
255
257
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml,sha256=gWswFs6SZOi50BsIjbXkwGmza2-iWAbaf7hW64eH8OU,970
|
|
256
258
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml,sha256=_fRtXmRvktAiXBHiL5pp50LzN1RDN6seLKfoDXwWFBU,944
|
|
257
259
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml,sha256=l4KPinBCdBTqmI3iwiIDmDFSa-wAPu6m6LoVTSMo8sM,1041
|
|
260
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256=7BBRsP-E31iSrC5O8snEH3MlCaw26aS3OqFeyhSaEqo,1084
|
|
258
261
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml,sha256=tJZBF0fxhkd6hUiySqFG62dxscJqRqZo4cfhj09SRVw,1043
|
|
259
262
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml,sha256=2fVFN3RtVgsDA6vssrrdbzMCj1Pw1Sa48nz0gvvUFD0,1041
|
|
260
263
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml,sha256=_-nT2YzJSJuKkNCMsTPZp1xgqJsTAUACLnvszDarn9U,1043
|
|
@@ -364,8 +367,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-connection-p
|
|
|
364
367
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml,sha256=ich32ZYaXh-ixNNyFi5wvyEfLq0H5l0GS4MOL5TpjuE,774
|
|
365
368
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml,sha256=rJuWWXubUeRKQ2GSfHlbPMLeOyM9Eu_MzvN2vgKcAhA,672
|
|
366
369
|
redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
|
|
367
|
-
redis_benchmarks_specification-0.1.
|
|
368
|
-
redis_benchmarks_specification-0.1.
|
|
369
|
-
redis_benchmarks_specification-0.1.
|
|
370
|
-
redis_benchmarks_specification-0.1.
|
|
371
|
-
redis_benchmarks_specification-0.1.
|
|
370
|
+
redis_benchmarks_specification-0.1.260.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
371
|
+
redis_benchmarks_specification-0.1.260.dist-info/METADATA,sha256=pA1N4KVe7to7fCPdNzbUJWZprHFENLxBW3tSccX7rmk,22726
|
|
372
|
+
redis_benchmarks_specification-0.1.260.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
373
|
+
redis_benchmarks_specification-0.1.260.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
374
|
+
redis_benchmarks_specification-0.1.260.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|