Hey, I’ve been exploring the new Go support for AWS Lambda that has been announced by AWS early this year (see Announcing Go Support for AWS Lambda), and there’s a little detail of it that I found very interesting: at its core, it uses Go’s net/rpc package as a mean of communication between the AWS infrastructure and your code. Having never used net/rpc myself, I decided to explore it. Architecting an RPC hello world Creating a Go RPC Handler Creating a Go RPC Server and Client Go RPC i...