-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoptimized_inverted_bitmap_test.go
227 lines (196 loc) · 5.92 KB
/
optimized_inverted_bitmap_test.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package matching
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestOptimizedInvertedBitmapMatcher(t *testing.T) {
assert := assert.New(t)
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
s1 = 1
s2 = 2
)
sub0, err := ib.Subscribe("forex.*", s0)
assert.NoError(err)
sub1, err := ib.Subscribe("*.usd", s0)
assert.NoError(err)
sub2, err := ib.Subscribe("forex.eur", s0)
assert.NoError(err)
sub3, err := ib.Subscribe("*.eur", s1)
assert.NoError(err)
sub4, err := ib.Subscribe("forex.*", s1)
assert.NoError(err)
sub5, err := ib.Subscribe("trade", s1)
assert.NoError(err)
sub6, err := ib.Subscribe("*", s2)
assert.NoError(err)
assertEqual(assert, []Subscriber{s0, s1}, ib.Lookup("forex.eur"))
assertEqual(assert, []Subscriber{s2}, ib.Lookup("forex"))
assertEqual(assert, []Subscriber{}, ib.Lookup("trade.jpy"))
assertEqual(assert, []Subscriber{s0, s1}, ib.Lookup("forex.jpy"))
assertEqual(assert, []Subscriber{s1, s2}, ib.Lookup("trade"))
ib.Unsubscribe(sub0)
ib.Unsubscribe(sub1)
ib.Unsubscribe(sub2)
ib.Unsubscribe(sub3)
ib.Unsubscribe(sub4)
ib.Unsubscribe(sub5)
ib.Unsubscribe(sub6)
assertEqual(assert, []Subscriber{}, ib.Lookup("forex.eur"))
assertEqual(assert, []Subscriber{}, ib.Lookup("forex"))
assertEqual(assert, []Subscriber{}, ib.Lookup("trade.jpy"))
assertEqual(assert, []Subscriber{}, ib.Lookup("forex.jpy"))
assertEqual(assert, []Subscriber{}, ib.Lookup("trade"))
}
func BenchmarkOptimizedInvertedBitmapMatcherSubscribe(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
populateMatcher(ib, 1000, 5)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Subscribe("foo.*.baz.qux.quux", s0)
}
}
func BenchmarkOptimizedInvertedBitmapMatcherUnsubscribe(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
id, _ := ib.Subscribe("foo.*.baz.qux.quux", s0)
populateMatcher(ib, 1000, 5)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Unsubscribe(id)
}
}
func BenchmarkOptimizedInvertedBitmapMatcherLookup(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
ib.Subscribe("foo.*.baz.qux.quux", s0)
populateMatcher(ib, 1000, 5)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Lookup("foo.bar.baz.qux.quux")
}
}
func BenchmarkOptimizedInvertedBitmapMatcherSubscribeCold(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Subscribe("foo.*.baz.qux.quux", s0)
}
}
func BenchmarkOptimizedInvertedBitmapMatcherUnsubscribeCold(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
id, _ := ib.Subscribe("foo.*.baz.qux.quux", s0)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Unsubscribe(id)
}
}
func BenchmarkOptimizedInvertedBitmapMatcherLookupCold(b *testing.B) {
var (
ib = NewOptimizedInvertedBitmapMatcher(5)
s0 = 0
)
ib.Subscribe("foo.*.baz.qux.quux", s0)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ib.Lookup("foo.bar.baz.qux.quux")
}
}
func BenchmarkMultithreaded1Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 1
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded2Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 2
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded4Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 4
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded8Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 8
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded12Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 12
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded16Thread5050OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 16
benchmark5050(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded1Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 1
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded2Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 2
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded4Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 4
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded8Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 8
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded12Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 12
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}
func BenchmarkMultithreaded16Thread9010OptimizedInvertedBitmap(b *testing.B) {
numItems := 1000
numThreads := 16
benchmark9010(b, numItems, numThreads, func(items [][]string) Matcher {
return NewOptimizedInvertedBitmapMatcher(uint(numItems))
})
}