forked from zllangct/ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunordered_collection_with_id_test.go
83 lines (69 loc) · 1.69 KB
/
unordered_collection_with_id_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
package ecs
import (
"testing"
)
func BenchmarkUnorderedCollectionWithID_Read(b *testing.B) {
c := NewUnorderedCollectionWithID[__unorderedCollection_Test_item]()
var ids []int64
total := 100000
for n := 0; n < total; n++ {
item := &__unorderedCollection_Test_item{
ItemID: int64(n),
}
_, _ = c.Add(item)
ids = append(ids, int64(n+1))
}
b.ResetTimer()
for n := 0; n < b.N; n++ {
_ = c.GetByID(ids[(n+1)%total])
}
}
func BenchmarkUnorderedCollectionWithID_Iter(b *testing.B) {
c := NewUnorderedCollectionWithID[__unorderedCollection_Test_item]()
var ids []int64
total := 100000
for n := 0; n < total; n++ {
item := &__unorderedCollection_Test_item{
ItemID: int64(n),
}
_, _ = c.Add(item)
ids = append(ids, int64(n))
}
iter := NewUnorderedCollectionWithIDIterator(c)
b.ResetTimer()
for n := 0; n < b.N; n++ {
for item := iter.Begin(); !iter.End(); item = iter.Next() {
_ = item
}
}
}
func BenchmarkUnorderedCollectionWithID_SliceWrite(b *testing.B) {
var slice []__unorderedCollection_Test_item
var id2index = map[int]int{}
for n := 0; n < b.N; n++ {
item := &__unorderedCollection_Test_item{
ItemID: int64(n),
}
slice = append(slice, *item)
id2index[n] = n
}
}
func BenchmarkUnorderedCollectionWithID_SliceRead(b *testing.B) {
var slice []__unorderedCollection_Test_item
// collection 有ID生成,此处用通常方式模拟
var id2index = map[int]int{}
var ids []int64
total := 100000
for n := 0; n < total; n++ {
item := &__unorderedCollection_Test_item{
ItemID: int64(n),
}
slice = append(slice, *item)
id2index[n] = n
ids = append(ids, int64(n))
}
b.ResetTimer()
for n := 0; n < b.N; n++ {
_ = slice[id2index[n%total]]
}
}