Just created a new worker role to process messages coming from queue. The default example for this include the following code at the beginning:
// QueueClient is thread-safe. Recommended that you cache
// rather than recreating it on every request
QueueClient Client;
Can anyone elaborate on the comment that comes with that demo?
don't create new instances every time. Create just one instance, and use it.