How does serverless computing work?
by SMEBOOK (admin) ยท December 13, 2020
Cloud providers offer serverless computing functions through Function as a Service (FaaS). Developers code these functions on serveless platform in below steps:
- Coding the Functionality: The developer codes specific application functionality.
- Event Definition: The developer then specifies the event/HTTP request to trigger that function.
- Execution: The cloud service provider execute the function on command.
- The user sees the result of the executed function inside the application.
