- Building Microservices with Go
- Nic Jackson
- 71字
- 2021-07-15 17:28:14
RPC message frameworks
These days we are no longer coupled to having the same interface implementation on both the client and the server, this would not adhere to our mantra of independently versionable and deployable. Thankfully frameworks are more flexible we can take the same approach as we do with REST, it is OK to add, however, removing elements or changing the signatures of a method must trigger a version update.
推薦閱讀