-
Notifications
You must be signed in to change notification settings - Fork 20
/
benchmark_large_payload_test.go
54 lines (50 loc) · 1.09 KB
/
benchmark_large_payload_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
package go_benchmark
import (
"testing"
"github.com/buger/jsonparser"
"github.com/json-iterator/go"
"encoding/json"
)
func BenchmarkJsonParserLarge(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
count := 0
jsonparser.ArrayEach(largeFixture, func(value []byte, dataType jsonparser.ValueType, offset int, err error) {
count++
}, "topics", "topics")
}
}
func BenchmarkJsoniterLarge(b *testing.B) {
iter := jsoniter.ParseBytes(largeFixture)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
iter.ResetBytes(largeFixture)
count := 0
for field := iter.ReadObject(); field != ""; field = iter.ReadObject() {
if "topics" != field {
iter.Skip()
continue
}
for field := iter.ReadObject(); field != ""; field = iter.ReadObject() {
if "topics" != field {
iter.Skip()
continue
}
for iter.ReadArray() {
iter.Skip()
count++
}
break
}
break
}
}
}
func BenchmarkEncodingJsonLarge(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
payload := &LargePayload{}
json.Unmarshal(largeFixture, payload)
}
}