-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update grpc readme information about protoc and streams #557
update grpc readme information about protoc and streams #557
Conversation
transport/grpc/README.md
Outdated
@@ -2,18 +2,23 @@ | |||
|
|||
[gRPC](http://www.grpc.io/) is an excellent, modern IDL and transport for microservices. | |||
If you're starting a greenfield project, Go kit strongly recommends gRPC as your default transport. | |||
And using gRPC and Go kit together is very simple. | |||
|
|||
One important note is that while gRPC supports streaming requests and replies, go-kit does not. You can still use streams in your service, but their implementation will not be able to take advantage of many go-kit features like middleware. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please wrap at 80 columns. Also, "Go kit", not "go-kit".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a couple of nits. Thanks!
Ping? :) |
sorry, I apparently was not receiving notifications for conversations and PRs. that's fixed and now I'm gonna fix this |
@peterbourgon style changes up |
let me know if you want me to squash these |
Thanks! |
update grpc readme information about protoc and streams
@peterbourgon
As per our conversation in Slack, a link to the protocol releases page and some information about streams and go-kit. Let me know if any wording should be changed. Thanks!