- You simply want o execute your code in response to event or on a schedule without worrying about building out and managing a whole application or the infrastructure to run your code.
- Azure Functions is a "serverless" style offesring that lets you write just code you need - with code execution that's triggered by HTTP requests, Webhooks, cloud service events or on a schedule.
- With Azure Function, you can code in your development language of choice such as C#, F#, Node.js, Python or PHP.
- With consumption-based billing, you pay only for the time that your code executes.
When to use
- Azure Functions when you have code that is triggered by other Azure services by web-based events or schedule.
- You can also use it when you do not need to overhead of a full project or when you only want to pay the time that your code runs.
Reference
- Documentation: https://docs.microsoft.com/en-us/azure/azure-functions/
No comments:
Post a Comment