How to achieve high-performance REST API on Azure with .NET?

后端 未结 7 1658
Happy的楠姐
Happy的楠姐 2021-02-07 15:24

We have a .NET Web Role hosted on Windows Azure that only serves a REST API with only a hand few web methods.

API is u

相关标签:
7条回答
  • 2021-02-07 16:03

    I found the initialization of blob storage (CreateCloudBlobClient(), GetContainerReference() etc) to be quite slow. It's a good idea to take this into consideration when designing Azure services.

    I have separate services for anything that requires blob access as it dragged down the time for the pure db requests.

    0 讨论(0)
提交回复
热议问题