aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/redis/benches/stress/speed/plot
blob: 2563797cf5463cb10f8aa12bd56d39b885a53c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

gnuplot >size-rate.jpg << _EOF_

set terminal png nocrop enhanced font verdana 12 size 640,480
set logscale x
set logscale y
set grid
set xlabel 'Serialized object size, octets'
set ylabel 'decode(encode(obj)) rate, 1/sec'
plot '00' using 1:2 title 'json' smooth bezier, '00' using 1:3 title 'msgpack' smooth bezier, '00' using 1:4 title 'bison' smooth bezier

_EOF_