如何查看 Azure 存储帐户队列
How to view Azure storage account queue
我的 Azure 存储帐户队列中有一个队列。我想要一个工具来查看队列中的内容。
我试过'CloudBerry Explorer for Azure Blob Storage',但是我看不到队列的内容。
我试过'Azure Storage Explorer',我只能看到队列中的前 32 条消息。
我可以看到队列中的所有消息吗?
有没有工具可以让我改变队列中消息的顺序?
Azure 队列存储不保证消息排序,因此也不提供重新排序消息的方法。
有两种查看现有消息内容的方法:Get Messages API and Peek Messages API. Both allow retrieving up to 32 messages at a time, so there is no way to view more than 32 messages without making the first 32 invisible (dequeue) first with Get Messages API。
我的 Azure 存储帐户队列中有一个队列。我想要一个工具来查看队列中的内容。
我试过'CloudBerry Explorer for Azure Blob Storage',但是我看不到队列的内容。
我试过'Azure Storage Explorer',我只能看到队列中的前 32 条消息。 我可以看到队列中的所有消息吗?
有没有工具可以让我改变队列中消息的顺序?
Azure 队列存储不保证消息排序,因此也不提供重新排序消息的方法。
有两种查看现有消息内容的方法:Get Messages API and Peek Messages API. Both allow retrieving up to 32 messages at a time, so there is no way to view more than 32 messages without making the first 32 invisible (dequeue) first with Get Messages API。