Search⌘ K
AI Features

Definition

Explore the concept of synchronous microservices, understanding how they make requests to other services and wait for results. Learn about synchronous and asynchronous communication protocols with real-world examples in a microservice architecture.

Introduction

This chapter deals with the technical options for implementing synchronous microservices. Chapter 6 already introduced the term “synchronous microservices”.

A microservice is synchronous if it makes a request to other microservices while processing requests and waits for the result.

The logic to ...