💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
Banchmark === - 简单测试 ~~~ type datamodel struct { Host string `json:"host"` } func BenchmarkSquare(b *testing.B) { b.ResetTimer() for i:=0;i<b.N;i++{ //测试代码 //data :=`{"host":"123456"}` //d := &datamodel{} //json.Unmarshal([]byte(data),d) d := &datamodel{ Host:"1212312", } json.Marshal(d) } b.StopTimer() } ~~~