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)
}
}
|