forked from brownsys/zookeeper-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi.plot
49 lines (40 loc) · 1.43 KB
/
multi.plot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
set xlabel "Time since start"
set ylabel "CREATE ops per second"
plot "pre/CREATE.dat" title 'Pre' with lines, "post/CREATE.dat" title 'Post' with lines
set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "create.ps"
replot
set term pop
set xlabel "Time since start"
set ylabel "DELETE ops per second"
plot "pre/DELETE.dat" title 'Pre' with lines, "post/DELETE.dat" title 'Post' with lines
set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "delete.ps"
replot
set term pop
set xlabel "Time since start"
set ylabel "READ ops per second"
plot "pre/READ.dat" title 'Pre' with lines, "post/READ.dat" title 'Post' with lines
set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "read.ps"
replot
set term pop
set xlabel "Time since start"
set ylabel "SETSINGLE ops per second"
plot "pre/SETSINGLE.dat" title 'Pre' with lines, "post/SETSINGLE.dat" title 'Post' with lines
set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "setsingle.ps"
replot
set term pop
set xlabel "Time since start"
set ylabel "SETMULTI ops per second"
plot "pre/SETMULTI.dat" title 'Pre' with lines, "post/SETMULTI.dat" title 'Post' with lines
set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "setmulti.ps"
replot
set term pop