Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1001 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 1001 Bytes

SERVERLESS [λ ➡️ ☁️]

Everything serverless related.

Abstract

Serverless is a cloud-native development model that allows developers to build and run applications without having to manage the underlying infrastructure.

In this paradigm, servers are abstracted away from app development.
A cloud provider handles the routine work of provisioning, maintaining, and scaling the server infrastructure.
Developers can simply package their code in containers for deployment.

In addition to not having to worry about infrastructure and concentrating resources solely on writing code,
other advantages of serverless are that apps can automatically scale up and down as needed.

Serverless offerings from public cloud providers are usually metered on-demand through an event-driven execution model.
As a result, when a serverless function is sitting idle, it doesn’t cost anything.