cannam@147: Cap'n Proto - Insanely Fast Data Serialization Format cannam@147: Copyright 2013-2015 Sandstorm Development Group, Inc. cannam@147: https://capnproto.org cannam@147: cannam@147: Cap'n Proto is an insanely fast data interchange format and capability-based cannam@147: RPC system. Think JSON, except binary. Or think of Google's Protocol Buffers cannam@147: (http://protobuf.googlecode.com), except faster. In fact, in benchmarks, cannam@147: Cap'n Proto is INFINITY TIMES faster than Protocol Buffers. cannam@147: cannam@147: Full installation and usage instructions and other documentation are maintained cannam@147: on the Cap'n Proto web site: cannam@147: http://kentonv.github.io/capnproto/install.html cannam@147: cannam@147: WARNING: Cap'n Proto requires a modern compiler. See the above link for cannam@147: detailed requirements. cannam@147: cannam@147: To build and install (from a release package), simply do: cannam@147: ./configure cannam@147: make -j4 check cannam@147: sudo make install cannam@147: cannam@147: The -j4 allows the build to use up to four processor cores instead of one. cannam@147: You can increase this number if you have more cores. Specifying "check" cannam@147: says to run tests in addition to building. This can be omitted to make the cannam@147: build slightly faster, but running tests and reporting failures back to the cannam@147: developers helps us out! cannam@147: