Unpacking and Demystifying Azure Function Apps: An Overview

Reading Time: 4 minutes What is an Azure Function? Azure Function Apps are Azure cloud-based serverless event-driven applications. Generally Azure Functions are stateless, meaning that each trigger or run of the Function App has no context or reference to previous runs. This isn’t a hard rule however, as there is an extension for something called Durable Functions, which allow…