2019-03-21 00:14:23 +08:00
|
|
|
// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
|
|
|
|
package gjson_test
|
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"testing"
|
2019-07-29 21:01:19 +08:00
|
|
|
|
|
|
|
"github.com/gogf/gf/encoding/gjson"
|
2019-03-21 00:14:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func Benchmark_Set1(b *testing.B) {
|
2019-06-19 09:06:52 +08:00
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := gjson.New(map[string]string{
|
|
|
|
"k1": "v1",
|
|
|
|
"k2": "v2",
|
|
|
|
})
|
|
|
|
p.Set("k1.k11", []int{1, 2, 3})
|
|
|
|
}
|
2019-03-21 00:14:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func Benchmark_Set2(b *testing.B) {
|
2019-06-19 09:06:52 +08:00
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := gjson.New([]string{"a"})
|
|
|
|
p.Set("0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0", []int{1, 2, 3})
|
|
|
|
}
|
2019-03-21 00:14:23 +08:00
|
|
|
}
|