0 votes
in Azure by
Explain Azure Queues

1 Answer

0 votes
by

Azure Queue Storage is a storage service used for storing large numbers of messages that can be accessed from anywhere via authenticated calls.

The size of a single message can be 64kb.

The time for which the messages stay in the queue is 7 Days.

Queues can extend up to the total capacity limit of Storage account.

Common use cases:

Creating a backlog of work to process asynchronously.

Passing messages from an Azure web role to an Azure worker role.

Queue storage can be accessed as http://<account>.queue.core.windows.net/<QueueName>.

Related questions

0 votes
asked Feb 17, 2020 in Azure by rahuljain1
0 votes
asked Aug 9, 2023 in DBMS by DavidAnderson
...