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 ?
Asked
Active
Viewed 1,809 times
5
-
It's not just safe is needed if you want to achieve maximum throughput! :) – vtortola May 26 '11 at 10:38
1 Answers
4
Azure Queue is thread safe and is accessed using a REST API. MSDN has some reference data.

Frazell Thomas
- 6,031
- 1
- 20
- 21