Serverless technology is based on the following principles.
Principles of serverless technology
Lower cost
Cost is based on the actual consumption of the compute resources and power. There is no cost associated to them if there is no consumption.
Event-driven
Serverless functions should be able to execute based on certain events happening. The event should trigger the execution of the function. In other words, serverless should allow functions to decouple themselves from other functions and instead rely on the firing of certain events in which they are interested in.
...