I've got an Azure WebJob which reads messages from a ServiceBus topic, and I'm looking for ways to speed it up. I've seen ways to do this with multiple factories and async methods, but these examples aren't for a WebJob, I'm not sure how this can be applied in a web job, any suggestions or links to relevant articles would be much appreciated!
The article I've seen with ideas to speed up using ServiceBus is here: https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-performance-improvements I think in a normal exe I could use the multiple factory and async ideas from this, but with a WebJob I have a method with a ServiceBusTrigger attribute, so I'm not sure if I can use the ideas in this article in the WebJob.