Serverless
- In Serverless, We write business logic as function (code). This function will be executed when the requests are made and we will be charged only for this duration.
- Managed Serverless providers will process the request and run the function charge you accordingly.
- Azure offers serverless (FaaS) using Azure Functions
- There are no standards in this technology and portability from one provider to other is difficult.
- Refer Here for official docs
- Create a simple function
- Lets create a sample azure function using visual studio code
- Ensure Azure Functions Extension is installed
- Refer Here for quick start from official docs
- Next Steps:
- Function
- Trigger
- Bindings
- Durable Functions