Go for Microservices?
In this lesson, we'll see how Go fits for usage in the implementation of Microservices according to the criteria specified in the Requirements lesson. Let's Begin!
We'll cover the following...
The criteria from the second lesson of this chapter for the implementation of microservices can serve as a basis to assess Go’s suitability as a microservices programming language.
Communication #
Go supports REST in the standard libraries. Libraries are also available for messaging systems such as AMQP, for example https://github.com/streadway/amqp.
There is also a library for messaging with ...