terraform/vendor/github.com/vmihailenco/msgpack
James Bardin 55a0a7d2f0 udpate go.mod and vendor 2018-11-29 15:23:38 -05:00
..
codes
.travis.yml udpate go.mod and vendor 2018-11-29 15:23:38 -05:00
CHANGELOG.md vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
LICENSE
Makefile
README.md
appengine.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
decode.go udpate go.mod and vendor 2018-11-29 15:23:38 -05:00
decode_map.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
decode_number.go
decode_query.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
decode_slice.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
decode_string.go
decode_value.go udpate go.mod and vendor 2018-11-29 15:23:38 -05:00
encode.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
encode_map.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
encode_number.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
encode_slice.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
encode_value.go vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
ext.go udpate go.mod and vendor 2018-11-29 15:23:38 -05:00
msgpack.go
tag.go
time.go
types.go udpate go.mod and vendor 2018-11-29 15:23:38 -05:00

README.md

MessagePack encoding for Golang

Build Status GoDoc

Supports:

API docs: https://godoc.org/github.com/vmihailenco/msgpack. Examples: https://godoc.org/github.com/vmihailenco/msgpack#pkg-examples.

Installation

Install:

go get -u github.com/vmihailenco/msgpack

Quickstart

func ExampleMarshal() {
	type Item struct {
		Foo string
	}

	b, err := msgpack.Marshal(&Item{Foo: "bar"})
	if err != nil {
		panic(err)
	}

	var item Item
	err = msgpack.Unmarshal(b, &item)
	if err != nil {
		panic(err)
	}
	fmt.Println(item.Foo)
	// Output: bar
}

Benchmark

BenchmarkStructVmihailencoMsgpack-4   	  200000	     12814 ns/op	    2128 B/op	      26 allocs/op
BenchmarkStructUgorjiGoMsgpack-4      	  100000	     17678 ns/op	    3616 B/op	      70 allocs/op
BenchmarkStructUgorjiGoCodec-4        	  100000	     19053 ns/op	    7346 B/op	      23 allocs/op
BenchmarkStructJSON-4                 	   20000	     69438 ns/op	    7864 B/op	      26 allocs/op
BenchmarkStructGOB-4                  	   10000	    104331 ns/op	   14664 B/op	     278 allocs/op

Howto

Please go through examples to get an idea how to use this package.

See also