Skip to the content.

Code 401 Class 16 Reading Notes

What is Serverless Computing

Serverless is a cloud execution model that enables a simpler, more cost-effective way to build and operate cloud-native applications.

FaaS (Function as a service) is a subset of serverless, it’s the compute paradigm central to serverless, wherein application code or containers run only in response to events or requests.

Pros

Cons

Things to ask before going serverless

  1. Are there going to be spikes of processes or long steady processes.
  2. Will the application require less startup latency throughout it’s usage?

Things I want to know more about

<—BACK