gpt4 book ai didi

go - 具有对象映射的Avro模式?

转载 作者:行者123 更新时间:2023-12-01 22:19:57 29 4
gpt4 key购买 nike

type Job struct {
Name string
MaskSchema map[string]MaskInfo
}


type MaskInfo struct {
Masked bool
SortCol bool
}
如何将Job表示为Avro模式?

最佳答案

您可以使用goavro:


type Job struct {
Name string
MaskSchema map[string]MaskInfo
}


type MaskInfo struct {
Masked bool
SortCol bool
}

newJob := Job{
// fill the struct
}

textual, err = codec.TextualFromNative(nil, newJob)
if err != nil {
fmt.Println(err)
}

fmt.Println(string(textual))
注意:我没有测试它,但是它应该可以工作。
请参阅文档: https://github.com/linkedin/goavro

关于go - 具有对象映射的Avro模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64088690/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com