codec

package module
v1.1.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2020 License: MIT Imports: 0 Imported by: 0

README

go-codec-bench

This is a comparison of different binary and text encodings.

We compare the codecs provided by github.com/ugorji/go/codec package, against other libraries:

github.com/ugorji/go/codec provides:

Other codecs compared include:

Data

The data being serialized is a TestStruc randomly generated values. See values_test.go for the definition of the TestStruc.

Run Benchmarks

See bench.sh for how to download the external libraries which we benchmark against, generate the files for the types when needed, and run the suite of tests.

The 3 suite of benchmarks are

  • CodecSuite
  • XSuite
  • CodecXSuite
# Note that `bench.sh` may be in the codec sub-directory, and should be run from there.

# download the code and all its dependencies
./bench.sh -d

# code-generate files needed for benchmarks against ffjson, easyjson, msgp, etc
./bench.sh -c

# run the full suite of tests (not including external formats)
./bench.sh -s

# Below, see how to just run some specific suite of tests, knowing the right tags and flags ...
# See bench.sh for different iterations

# Run suite of tests in default mode (selectively using unsafe in specific areas)
go test -tags "alltests x" -bench "CodecXSuite" -benchmem 
# Run suite of tests in safe mode (no usage of unsafe)
go test -tags "alltests x safe" -bench "CodecXSuite" -benchmem 
# Run suite of tests in codecgen mode, including all tests which are generated (msgp, ffjson, etc)
go test -tags "alltests x generated" -bench "CodecXGenSuite" -benchmem 

Issues

The following issues are seen currently (11/20/2014):

  • code.google.com/p/cbor/go fails on encoding and decoding the test struct
  • github.com/davecgh/go-xdr/xdr2 fails on encoding and decoding the test struct
  • github.com/Sereal/Sereal/Go/sereal fails on decoding the serialized test struct

Representative Benchmark Results

Please see the benchmarking blog post for detailed representative results.

A snapshot of some results on my 2016 MacBook Pro is below.
Note: errors are truncated, and lines re-arranged, for readability.

What you should notice:

  • Results get better with codecgen, resulting in about 50% performance improvement. Users should carefully weigh the performance improvements against the usability and binary-size increases, as performance is already extremely good without the codecgen path.

See bench.out.txt for representative result from running bench.sh as below, as of 2020-11-16.

  ./bench.sh -z > bench.out.txt

snippet of benchmark output, running without codecgen (2020-11-16)
note that the first 5 are from codes (and the following are from other libraries (as named).

BenchmarkCodecXSuite/options-false.../
Benchmark__Msgpack____Encode-8         	   73793 ns/op	    3136 B/op	      44 allocs/op
Benchmark__Binc_______Encode-8         	   78241 ns/op	    3152 B/op	      44 allocs/op
Benchmark__Simple_____Encode-8         	   75216 ns/op	    3136 B/op	      44 allocs/op
Benchmark__Cbor_______Encode-8         	   75456 ns/op	    3136 B/op	      44 allocs/op
Benchmark__Json_______Encode-8         	  153859 ns/op	    3248 B/op	      44 allocs/op
Benchmark__Std_Json___Encode-8         	  210771 ns/op	   74090 B/op	     444 allocs/op
Benchmark__Gob________Encode-8         	  160088 ns/op	  169704 B/op	     592 allocs/op
Benchmark__JsonIter___Encode-8         	  153445 ns/op	   54483 B/op	     106 allocs/op
Benchmark__Bson_______Encode-8         	  306484 ns/op	  238102 B/op	    1095 allocs/op
Benchmark__Mgobson____Encode-8         	  382501 ns/op	  292893 B/op	    1721 allocs/op
Benchmark__VMsgpack___Encode-8         	  212583 ns/op	  164228 B/op	     354 allocs/op
Benchmark__Fxcbor_____Encode-8         	  102383 ns/op	   49540 B/op	     320 allocs/op
Benchmark__Sereal_____Encode-8         	  335741 ns/op	  259062 B/op	    3220 allocs/op

Benchmark__Msgpack____Decode-8	          179925 ns/op	   65685 B/op	     929 allocs/op
Benchmark__Binc_______Decode-8         	  183535 ns/op	   65667 B/op	     929 allocs/op
Benchmark__Simple_____Decode-8         	  176912 ns/op	   65686 B/op	     929 allocs/op
Benchmark__Cbor_______Decode-8         	  190310 ns/op	   65669 B/op	     929 allocs/op
Benchmark__Json_______Decode-8         	  326112 ns/op	   89793 B/op	    1088 allocs/op
Benchmark__Std_Json___Decode-8         	  790513 ns/op	  130730 B/op	    2961 allocs/op
Benchmark__Gob________Decode-8         	  274886 ns/op	  150651 B/op	    2180 allocs/op
Benchmark__JsonIter___Decode-8         	  321904 ns/op	  126302 B/op	    2486 allocs/op
Benchmark__Bson_______Decode-8         	  504140 ns/op	  180300 B/op	    4256 allocs/op
Benchmark__Mgobson____Decode-8         	  529322 ns/op	  161410 B/op	    6472 allocs/op
Benchmark__Fxcbor_____Decode-8         	  235041 ns/op	   67253 B/op	    1299 allocs/op
  • snippet of bench.out.txt, running with codecgen (2020-11-16) *
BenchmarkCodecXGenSuite/options-false.../
Benchmark__Msgpack____Encode-8         	   40000 ns/op	     232 B/op	       2 allocs/op
Benchmark__Binc_______Encode-8         	   42680 ns/op	     248 B/op	       2 allocs/op
Benchmark__Simple_____Encode-8         	   42314 ns/op	     232 B/op	       2 allocs/op
Benchmark__Cbor_______Encode-8         	   41489 ns/op	     232 B/op	       2 allocs/op
Benchmark__Json_______Encode-8         	  116918 ns/op	     344 B/op	       2 allocs/op
Benchmark__Msgp_______Encode-8         	   27162 ns/op	       0 B/op	       0 allocs/op
Benchmark__Easyjson___Encode-8         	  112439 ns/op	   50526 B/op	      12 allocs/op
Benchmark__Ffjson_____Encode-8         	  280621 ns/op	  124716 B/op	    1033 allocs/op

Benchmark__Msgpack____Decode-8         	  103152 ns/op	   62101 B/op	     871 allocs/op
Benchmark__Binc_______Decode-8         	  107485 ns/op	   62087 B/op	     871 allocs/op
Benchmark__Simple_____Decode-8         	  102391 ns/op	   62102 B/op	     871 allocs/op
Benchmark__Cbor_______Decode-8         	  112386 ns/op	   62103 B/op	     871 allocs/op
Benchmark__Json_______Decode-8         	  233754 ns/op	   85043 B/op	    1001 allocs/op
Benchmark__Msgp_______Decode-8         	   69502 ns/op	   63894 B/op	     889 allocs/op
Benchmark__Easyjson___Decode-8         	  213565 ns/op	   66946 B/op	     459 allocs/op
Benchmark__Ffjson_____Decode-8         	  405474 ns/op	   90046 B/op	    1202 allocs/op

Documentation

Overview

Package codec provides a High Performance, Feature-Rich Idiomatic Go 1.4+ codec/encoding library for binc, msgpack, cbor, json.

Here, we have the benchmark files comparing against other encoding libraries.

See README.md for more details.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL