mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
a69ab27ab4
This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
44 lines
1.0 KiB
Bash
Executable File
44 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$(dirname $0)")"
|
|
|
|
if type sysctl &>/dev/null; then
|
|
# darwin and linux
|
|
sudo sysctl -w net.ipv4.ip_local_port_range="12000 65535"
|
|
sudo sysctl -w net.inet.ip.portrange.first=12000
|
|
sudo sysctl -w net.inet.tcp.msl=1000
|
|
sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000
|
|
elif type /usr/sbin/ndd &>/dev/null; then
|
|
# sunos
|
|
/usr/sbin/ndd -set /dev/tcp tcp_smallest_anon_port 12000
|
|
/usr/sbin/ndd -set /dev/tcp tcp_largest_anon_port 65535
|
|
/usr/sbin/ndd -set /dev/tcp tcp_max_buf 2097152
|
|
/usr/sbin/ndd -set /dev/tcp tcp_xmit_hiwat 1048576
|
|
/usr/sbin/ndd -set /dev/tcp tcp_recv_hiwat 1048576
|
|
fi
|
|
|
|
ulimit -n 100000
|
|
|
|
k=${KEEPALIVE}
|
|
if [ "$k" = "no" ]; then
|
|
k=""
|
|
else
|
|
k="-k"
|
|
fi
|
|
node=${NODE:-./node}
|
|
|
|
$node benchmark/http_simple.js &
|
|
npid=$!
|
|
|
|
sleep 1
|
|
|
|
if [ "$k" = "-k" ]; then
|
|
echo "using keepalive"
|
|
fi
|
|
|
|
for i in a a a a a a a a a a a a a a a a a a a a; do
|
|
ab $k -t 10 -c 100 http://127.0.0.1:8000/${TYPE:-bytes}/${LENGTH:-1024} \
|
|
2>&1 | grep Req | egrep -o '[0-9\.]+'
|
|
done
|
|
|
|
kill $npid
|