alecthomas / go_serialization_benchmarks

Benchmarks of Go serialization methods
https://alecthomas.github.io/go_serialization_benchmarks/
1.56k stars 158 forks source link

Adding CBOR serializers #16

Closed client9 closed 8 years ago

client9 commented 9 years ago

CBOR is msgpack-like format on IETF standards track (RFC 7049)

Golang implementations are:

Both seem to have high level API interfaces that serialise arbitrary structs, so I think they can be added without too much work. I will try to add them in a pull request, unless you beat me to it.

If anyone has found them to be unstable or broken, please let me know.

thanks all!

nickg

alecthomas commented 9 years ago

Interesting. I'd definitely welcome pull requests, thanks!

brianolson commented 8 years ago

I think that google code cbor link was mine, and it has moved to butbucket https://bitbucket.org/bodhisnarkva/cbor aka import cbor "bitbucket.org/bodhisnarkva/cbor/go"

alecthomas commented 8 years ago

Unfortunately I don't have time to add benchmarks for all serialisers, but I'd welcome PRs.

dumblob commented 6 years ago

It seems the repo https://bitbucket.org/bodhisnarkva/cbor/go got migrated to GitHub to https://github.com/brianolson/cbor_go .