Experiments
Explore hands-on experiments to implement server-side integration using Edge Side Includes in microservice architectures. Learn to create microservices that serve static and dynamic content, configure Docker containers, and route requests through Varnish cache. Understand caching strategies and simulate service failures to assess system resilience. This lesson helps you apply integration techniques in real-world scenarios.
We'll cover the following...
We'll cover the following...
version: '3'
services:
common:
image: educative1/mapi_scsesi_common
order:
image: educative1/mapi_scsesi_order
ports:
- "8090:8080"
varnish:
image: educative1/mapi_scsesi_varnish
links:
- common
- order
ports:
- "8080:8080"-
A microservice that simply displays a static HTML page can serve as an example.
-
The new ...