Experiments

In this lesson, we'll look at some experiments that you can try out with SSI using ESI.

We'll cover the following...

Experiments #

Here are some experiments you can do with all that you’ve learned in this chapter.

Supplement the system with an additional microservice.

Try it yourself! #

Try all the experiments in the environment below.

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 ...