I was wondering whether anyone knows specifically what the best practice is for using and potentially sharing or creating new connections from an Asp.Net Web Application to Azure Storage and -ServiceBus?
Basically the Asp.Net application receives file uploads, stores them in an Azure Storage Blog and sends a message to an Azure ServiceBus Queue to notify background processors.
While the background processors have persistent connections, I was wondering what the correct approach is for the frontend, Asp.Net application - should new connections be made on a per-request level to Azure Storage and likewise to the ServiceBus Queue or should I share an application-lifetime created connection for each of those two?
What's the recommended way here?