Tag Archives: consistency

What is gRPC and how does it differ from REST?

By | March 25, 2023

gRPC and REST are both popular ways to build APIs for client-server communication. Here are some differences between the two: Here’s an example of a gRPC endpoint response in the Protocol Buffers data format message Book { string title = 1; string author = 2; int32 published_year = 3; } message GetBookResponse { Book book… Read More »

Introduction to IaC using SAM and CloudFormation

By | March 25, 2023

AWS Serverless Application Model (SAM) is a framework for building serverless applications on AWS. SAM provides a simplified way of defining the Amazon API Gateway APIs, AWS Lambda functions, and Amazon DynamoDB tables needed by your serverless application. SAM also provides a command-line interface (CLI) for deploying and managing your serverless application on AWS. In… Read More »