github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/bench/microbenchmarks/http2/no_server_push_http2_bench (about) 1 #!/bin/bash 2 U=$1 3 B=$2 4 N=$3 5 C=$4 6 7 uris="" 8 prefix="http://$U/v1/objects/$B/__bench/l" 9 suffix=" " 10 for i in `seq $N`; do 11 uris=$uris$prefix$i$suffix; 12 done; 13 14 h2load -n $N -c $C --header=':method:GET' $uris