Azure queue: find if an item is in a queue

Is it possible to request an azure queue to determine if an element is somewhere in the specified queue (based on some key property)?

+6
source share
1 answer

Azure Queues are for sending asynchronous messages, not for searching. To support indexing, you should use an Azure Table or SQL Azure DB .

Azure Queues allow you to peek into the next message without deleting it .

+6
source

Source: https://habr.com/ru/post/926751/


All Articles