Serverless

In this lesson, we'll study serverless.

Introduction #

PaaS deploy applications. Serverless goes even further and enables the deployment of individual functions.

Thereby, Serverless allows even smaller deployments than with PaaS. A REST service can be divided into a variety of functions, one per HTTP method and resource.

The advantages of Serverless are similar to those of PaaS:

  • A high degree of abstraction and thus relatively simple deployment.
...