I am planning to implement an azure worker role which can start multiple threads. Each thread may want to read from or write to a storage queue. For different worker role instances, race situations are not the case. But, is it safe to simultaneously access the same queue from different threads running inside the same worker role ?
问问题
1687 次
1 回答
3
Azure Queue is thread safe and is accessed using a REST API. MSDN has some reference data.
于 2011-05-25T02:43:56.753 回答