Golang地图/阵列(非结构)的序列化

问题描述 投票:1回答:1

我做了很多查询,导致地图或地图的切片/数组,如下所示:

// package M
type SX map[string]interface{}
type IX map[int64]interface{}
type IAX map[int64][]interface{}
type SAX map[string][]interface{}
type SS map[string]string
type SF map[string]float64
type II map[int64]int64
type IB map[int64]bool
type SI map[string]int64
type IS map[int64]string
type SB map[string]bool

// package A
type X []interface{}
type MSX []map[string]interface{}

所以我可以声明它是这样的:

 // import `gitlab.com/kokizzu/gokil/A`
 // import `gitlab.com/kokizzu/gokil/M`
values := M.SX{
    `orderId`:  `1-12-1`,
    `apiKey`:   `16313c061a8e3288528123bd8`,
    `country`:  `360`, 
    `currency`: `360`, 
    `payType`:  1,
    `items`: A.MSX{
        M.SX{
            `code`:  `subscription for 7 days`,
            `name`:  `Bla bla`,
            `price`: price,
        },
    },
    `profile`: M.SX{
        `entry`: A.MSX{
            M.SX{
                `key`:   `need_mno_id`,
                `value`: `yes`,
            },
            M.SX{
                `key`:   `foo`,
                `value`: `bar`,
            },
        },
    },
    `profile`: A.MSX{
        M.SX{`foo`:`bar`,`age`:123},
        M.SX{`foo`:`wow`,`age`:234,`currency`:360},
        M.SX{`foo`:`such`,`age`:45,`is_admin`:true},
        M.SX{`foo`:`wow`,`age`:57,`is_deleted`:true},
    },
}

除了listencoding/gob之外哪个encoding/json支持这种序列化(不需要生成struct / schema)?

github.com/alecthomas/binary
github.com/davecgh/go-xdr/xdr
github.com/Sereal/Sereal/Go/sereal
github.com/ugorji/go/codec
gopkg.in/vmihailenco/msgpack.v2 --> has example for enc/dec-ing a map
labix.org/v2/mgo/bson
github.com/tinylib/msgp (code generator for msgpack)
github.com/golang/protobuf (generated code)
github.com/gogo/protobuf (generated code, optimized version of goprotobuf)
github.com/DeDiS/protobuf (reflection based)
github.com/google/flatbuffers
github.com/hprose/hprose-go/io
github.com/glycerine/go-capnproto
zombiezen.com/go/capnproto2
github.com/andyleap/gencode
github.com/pascaldekloe/colfer

注意:Gob没有任何问题(目前我使用它们),当Gob不再足够(不够快/不够小)时,我只需要准备替代(或者从最好的开始),因为我用它来缓存数据库(具有不断变化的模式)查询结果在RAM上。

serialization go deserialization
1个回答
1
投票

您的数据结构看起来可以表示为多个数据表。也就是说,归一化为表(与数据库表一样)。如果是这种情况,那么考虑使用FlatBuffers的基于表的子集。

我刚刚发布了一个Go库和实用程序。您需要做的就是将数据结构重新设计为表格格式并以简单的表格数据格式表示,然后安装并运行实用程序gotflat,它将为您生成所有粘合剂。以下链接显示了如何安装和使用它。我希望有所帮助。

https://github.com/urban-wombat/gotablesutils/releases/tag/v0.2-alpha

© www.soinside.com 2019 - 2024. All rights reserved.