Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between net/rpc package of Golang and gRPC framework?

Tags:

go

rpc

grpc

gRPC is a "general RPC framework" which uses ProtoBuffer to serialize and deserialize while the net/rpc package seems could do "nearly" the same thing with encoding/gob and both are under the umbrella of Google.
So what's the difference between them? What pros and cons dose choosing one of them have?

like image 717
lfree Avatar asked Aug 19 '16 08:08

lfree


1 Answers

Well, you have said it yourself. gRPC is a framework that uses RPC to communicate. RPC is not Protobuf but instead Protobuf can use RPC and gRPC is actually Protobuf over RPC.

You don't need to use Protobuf to create RPC services within your app. This is a good idea if you are doing libraries/apps from small to medium size. Also you don't need to learn the syntax of Protobuf to create your own services.

But, Protobuf is much faster than REST. It is a much more convenient way to communicate with the downside of the learning curve of the Protobuf syntax. Also, you can use Protobuf to generate the codebase in more languages than simply Go. So if you have some kind of service in Java, you can use Protobuf to generate RPC calls between them easily while if you use the net/rpc package you'll have to implement them twice (once in Go and once in Java)

In general, I will use Protobuf to nearly all. This gives you confidence to use it at more large scale or complex projects.

like image 63
MaC Avatar answered Oct 19 '22 12:10

MaC