Top

How to work with Azure Functions in C#

June 18, 2018

Via: InfoWorld

Azure Functions is the serverless compute offering in the Microsoft Azure cloud. Essentially, you don’t even need a virtual machine (VM) to run an Azure Function. Azure Functions are just an implementation of platform as a service (PaaS), one that is based on an event-driven programming model. This article presents an introduction to Azure Functions, why they are useful, and how we can work with them.

As there are no servers that you have to manage, Azure Functions can scale automatically, and you pay only for the time your code runs.

Read More on InfoWorld