Go to file
Stephen J Day bd8c759c72
ttrpc: update examples after name change
Signed-off-by: Stephen J Day <stephen.day@docker.com>
2017-11-15 17:09:36 -08:00
cmd/protoc-gen-gogottrpc ttrpc: update examples after name change 2017-11-15 17:09:36 -08:00
example ttrpc: update examples after name change 2017-11-15 17:09:36 -08:00
.gitignore Initial commit 2017-11-13 14:12:46 -08:00
channel_test.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
channel.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
client.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
generator.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
handlers.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
LICENSE Initial commit 2017-11-13 14:12:46 -08:00
Protobuild.toml ttrpc: update examples after name change 2017-11-15 17:09:36 -08:00
README.md ttrpc: update examples after name change 2017-11-15 17:09:36 -08:00
server_test.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
server.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00
types.go ttrpc: rename project to ttrpc 2017-11-15 17:04:16 -08:00

ttrpc

GRPC for low-memory environments.

The existing grpc-go project requires a lot of memory overhead for importing packages and at runtime. While this is great for many services with low density requirements, this can be a problem when running a large number of services on a single machine or on a machine with a small amount of memory.

This project reduces the binary size and protocol overhead when working with GRPC. We do this by eliding the net/http and net/http2 package used by grpc with a lightweight framing protocol We do this by eliding the net/http and net/http2 package used by grpc with a lightweight framing protocol.

Please note that while this project supports generating either end of the protocol, the generated service definitions will be incompatible with regular GRPC services, as they do not speak the same protocol.

Usage

Create a gogo vanity binary (see cmd/protoc-gen-gogottrpc/main.go for an example with the ttrpc plugin enabled.

It's recommended to use protobuild to build the protobufs for this project, but this will work with protoc directly, if required.

Differences from GRPC

  • The protocol stack has been replaced with a lighter protocol that doesn't require http, http2 and tls.
  • The client and server interface are identical whereas in GRPC there is a client and server interface that are different.
  • The Go stdlib context package is used instead.

Status

Very new. YMMV.