http2 serverをベンチする

h2loadを使う

公式のgithubの内容を確認しよう。apt-getにしても必要なパッケージが増えているかもしれない。
パッケージ足りなくても、何気なくコンパイル出来てしまうので注意。

h2loadをインストール

sudo apt-get install g++ make binutils autoconf automake autotools-dev libtool pkg-config \
  zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev \
  libjemalloc-dev cython python3-dev python-setuptools
cd /usr/local/src/
git clone https://github.com/tatsuhiro-t/spdylay.git
cd ./spdylay
autoreconf -i
automake
autoconf
./configure && make && make install
cd ..
git clone https://github.com/tatsuhiro-t/nghttp2.git
cd ./nghttp2
autoreconf -i
automake
autoconf
./configure && make && make install