Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
33 lines
655 B
33 lines
655 B
5 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Compile c extension
|
||
|
VERSION=7.4
|
||
|
PORT=12345
|
||
|
|
||
|
export PATH=/usr/local/php-$VERSION/bin:$PATH
|
||
|
/bin/bash ./compile_extension.sh $VERSION
|
||
|
|
||
|
nohup php -d protobuf.keep_descriptor_pool_after_request=1 -dextension=../ext/google/protobuf/modules/protobuf.so -S localhost:$PORT multirequest.php 2>&1 &
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
wget http://localhost:$PORT/multirequest.result -O multirequest.result
|
||
|
wget http://localhost:$PORT/multirequest.result -O multirequest.result
|
||
|
|
||
|
pushd ../ext/google/protobuf
|
||
|
phpize --clean
|
||
|
popd
|
||
|
|
||
|
PID=`ps | grep "php" | awk '{print $1}'`
|
||
|
echo $PID
|
||
|
|
||
|
if [[ -z "$PID" ]]
|
||
|
then
|
||
|
echo "Failed"
|
||
|
exit 1
|
||
|
else
|
||
|
kill $PID
|
||
|
echo "Succeeded"
|
||
|
fi
|