-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
133 lines (113 loc) · 3.05 KB
/
main.go
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package main
import (
"fmt"
"sync"
"time"
"github.com/keepchen/message-queue/queue"
)
func main() {
// instance := queue.GetDBInstance("db1")
// instance.RPop()
// instance.LPush("a")
// instance.RPush(0)
// instance.LPop()
// instance.RPush(1)
// instance.RPop()
// instance.RPop()
// instance.RPush(2)
// instance.LPush(3)
// instance.DisplayQueue()
benchmark(1000000)
}
func benchmark(ops int) {
benchmarkLPush(ops)
benchmarkRPush(ops)
benchmarkLPop(ops)
benchmarkRPop(ops)
benchmarkPushAndPop(ops)
}
func benchmarkLPush(ops int) {
start := time.Now().UnixNano()
instance := queue.GetDBInstance("db0")
for i := 0; i < ops; i++ {
instance.LPush(i)
}
end := time.Now().UnixNano()
cost := float64(end-start) / 1e6
fmt.Printf("------------------\n<benchmark>\n%d次[LPush]性能测试\n------------------\n-->操作次数: %d 次\n-->耗时: %f 毫秒\n-->队列长度: %d\n",
ops, ops, cost, instance.GetSize())
}
func benchmarkRPush(ops int) {
start := time.Now().UnixNano()
instance := queue.GetDBInstance("db1")
for i := 0; i < ops; i++ {
instance.RPush(i)
}
end := time.Now().UnixNano()
cost := float64(end-start) / 1e6
fmt.Printf("------------------\n<benchmark>\n%d次[RPush]性能测试\n------------------\n-->操作次数: %d 次\n-->耗时: %f 毫秒\n-->队列长度: %d\n",
ops, ops, cost, instance.GetSize())
}
func benchmarkLPop(ops int) {
instance := queue.GetDBInstance("db2")
for i := 0; i < ops; i++ {
instance.LPush(i)
}
start := time.Now().UnixNano()
for i := 0; i < ops; i++ {
instance.LPop()
}
end := time.Now().UnixNano()
cost := float64(end-start) / 1e6
fmt.Printf("------------------\n<benchmark>\n%d次[LPop]性能测试\n------------------\n-->操作次数: %d 次\n-->耗时: %f 毫秒\n-->队列长度: %d\n",
ops, ops, cost, instance.GetSize())
}
func benchmarkRPop(ops int) {
instance := queue.GetDBInstance("db3")
for i := 0; i < ops; i++ {
instance.LPush(i)
}
start := time.Now().UnixNano()
for i := 0; i < ops; i++ {
instance.RPop()
}
end := time.Now().UnixNano()
cost := float64(end-start) / 1e6
fmt.Printf("------------------\n<benchmark>\n%d次[RPop]性能测试\n------------------\n-->操作次数: %d 次\n-->耗时: %f 毫秒\n-->队列长度: %d\n",
ops, ops, cost, instance.GetSize())
}
func benchmarkPushAndPop(ops int) {
var wg sync.WaitGroup
start := time.Now().UnixNano()
instance := queue.GetDBInstance("db4")
wg.Add(2)
go func() {
for i := 0; i < ops; i++ {
instance.RPush(i)
}
wg.Done()
}()
go func(instance *queue.Instance) {
var times int
for {
if times == ops {
break
}
if instance.GetSize() == 0 {
continue
}
_, e := instance.RPop()
if e == nil {
times++
}
}
wg.Done()
}(instance)
wg.Wait()
end := time.Now().UnixNano()
cost := float64(end-start) / 1e6
fmt.Printf("------------------\n<benchmark>\n%d次同时[RPush|RPop]性能测试\n------------------\n-->操作次数: %d 次\n-->耗时: %f 毫秒\n-->队列长度: %d\n",
ops, ops*2, cost, instance.GetSize())
instance.FlushDB()
// instance.LPush("x")
}