Understanding the different Azure serverless services
Before we start to build a backend with a serverless architecture, we need to define what serverless means. In a serverless architecture, the code will run on a server, but we don’t need to worry about that; the only thing we need to focus on is building our software. We let someone else handle everything to do with servers. We don’t need to think about how much memory or central processing units (CPUs) the server needs, or even how many servers we need. When we use services in Azure, Microsoft takes care of this for us.
Azure SignalR Service
Azure SignalR Service is a service in Microsoft Azure for real-time communication between a server and clients. The service will push content to the clients without them having to poll the server to get content updates. SignalR can be used for multiple types of applications, including mobile applications, web applications, and desktop applications.
SignalR will use WebSockets...