blob: 33e67e2547b79f3f93b7286f520532c31e1180a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
bench: upload download
upload:
curl -X POST "http://127.0.0.1:7001/blobs?action=delete"
fl-run-bench -f test_Blobs.py Blobs.test_upload
fl-build-report --html results/blobs-bench.xml
download:
curl -X POST "http://127.0.0.1:7001/blobs?action=create&size=10&amount=5000"
fl-run-bench -f test_Blobs.py Blobs.test_download
fl-build-report --html results/blobs-bench.xml
test_upload:
curl -X POST "http://127.0.0.1:7001/blobs?action=delete"
fl-run-bench -c 1 --duration 10 -f test_Blobs.py Blobs.test_upload
test_download:
curl -X POST "http://127.0.0.1:7001/blobs?action=create&size=10"
fl-run-bench -c 1 --duration 10 -f test_Blobs.py Blobs.test_download
|