-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathencoder_bench_small_test.go
76 lines (68 loc) · 1.73 KB
/
encoder_bench_small_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
package benchmarks
import (
"encoding/json"
"log"
"testing"
"github.com/francoispqt/gojay"
"github.com/francoispqt/gojay/benchmarks"
jsoniter "github.com/json-iterator/go"
"github.com/mailru/easyjson"
)
func BenchmarkEncodingJsonEncodeSmallStruct(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := json.Marshal(benchmarks.NewSmallPayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkEasyJsonEncodeObjSmall(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := easyjson.Marshal(benchmarks.NewSmallPayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkJsonIterEncodeSmallStruct(b *testing.B) {
var json = jsoniter.ConfigCompatibleWithStandardLibrary
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := json.Marshal(benchmarks.NewSmallPayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkGoJayEncodeSmallStruct(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := gojay.MarshalJSONObject(benchmarks.NewSmallPayload()); err != nil {
b.Fatal(err)
}
}
}
func BenchmarkGoJayEncodeSmallFunc(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
if _, err := gojay.MarshalJSONObject(gojay.EncodeObjectFunc(func(enc *gojay.Encoder) {
enc.AddIntKey("st", 1)
enc.AddIntKey("sid", 1)
enc.AddStringKey("tt", "test")
enc.AddIntKey("gr", 1)
enc.AddStringKey("uuid", "test")
enc.AddStringKey("ip", "test")
enc.AddStringKey("ua", "test")
enc.AddIntKey("tz", 1)
enc.AddIntKey("v", 1)
})); err != nil {
b.Fatal(err)
}
}
}
func TestGoJayEncodeSmallStruct(t *testing.T) {
if output, err := gojay.MarshalJSONObject(benchmarks.NewSmallPayload()); err != nil {
t.Fatal(err)
} else {
log.Print(output)
}
}