-
Notifications
You must be signed in to change notification settings - Fork 3
/
benchmark_large_pl_test.go
77 lines (68 loc) · 1.56 KB
/
benchmark_large_pl_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
package main
import (
"encoding/json"
"testing"
"github.com/buger/jsonparser"
gojson "github.com/goccy/go-json"
"github.com/json-iterator/go"
)
// jsonParser
func BenchmarkJsonParserLargePl(b *testing.B) {
b.ReportAllocs()
b.SetBytes(int64(len(largeFixture)))
for i := 0; i < b.N; i++ {
count := 0
jsonparser.ArrayEach(largeFixture, func(value []byte, dataType jsonparser.ValueType, offset int, err error) {
count++
}, "users", "username", "avatar_template")
}
}
// go-json
func BenchmarkGoJsonLargePl(b *testing.B) {
b.ReportAllocs()
b.SetBytes(int64(len(largeFixture)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
var data LargePayload
gojson.Unmarshal(largeFixture, &data)
}
}
// jsoniter
func BenchmarkJsoniterLargePl(b *testing.B) {
iter := jsoniter.ParseBytes(jsoniter.ConfigDefault, largeFixture)
b.ReportAllocs()
b.SetBytes(int64(len(largeFixture)))
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
}
}
}
// encode/json
func BenchmarkEncodingJsonLargePl(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
b.SetBytes(int64(len(largeFixture)))
for i := 0; i < b.N; i++ {
payload := &LargePayload{}
json.Unmarshal(largeFixture, payload)
}
}