-
Notifications
You must be signed in to change notification settings - Fork 59
Nate Finch edited this page Jun 2, 2015
·
3 revisions
Not at all. The implementation of rpc.Server creates a goroutine for every request, so none of the calls are blocking. See the relevant line in the rpc package.
Some users have reported having trouble with the fact that Go's RPC message ids start at 0, and other libraries assume ids start at 1. This is a good place to start looking.