The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
544 B

#!/bin/sh
# performs a single qps run with one client and one server
set -ex
cd $(dirname $0)/../../..
NUMCPUS=`python2.7 -c 'import multiprocessing; print multiprocessing.cpu_count()'`
make CONFIG=opt qps_client qps_server qps_driver -j$NUMCPUS
bins/opt/qps_server -driver_port 10000 -port 10002 &
SERVER_PID=$!
bins/opt/qps_client -driver_port 10001 &
CLIENT_PID=$!
10 years ago
# wait for startup
sleep 2
export QPS_SERVERS=localhost:10000
export QPS_CLIENTS=localhost:10001
bins/opt/qps_driver $*
kill -2 $CLIENT_PID
kill -2 $SERVER_PID
wait