Create serverless applications | Enable automatic updates in a web application using Azure Functions and SignalR Service Flashcards
What is a polling-based design?
reporting information by fetching changes from the server based on a timer.
What is CORS?
CORS is an HTTP feature that enables a web application running under one domain to access resources in another domain.
what is SignalR?
SignalR is an abstraction for a series of technologies that allows your app to enjoy two-way communication between the client and server. SignalR handles connection management automatically, and lets you broadcast messages to all connected clients simultaneously, like a chat room. You can also send messages to specific clients. The connection between the client and server is persistent, unlike a classic HTTP connection, which is re-established for each communication.