skip to Main Content

Azure – BlobServiceClient singleton?

I am adding Blob Storage, while I am following this tutorial: https://www.learmoreseekmore.com/2022/11/dotnet7-webapi-azure-blob-storage-file-management-example.html This piece: builder.Services.AddScoped(_ => { return new BlobServiceClient(builder.Configuration.GetConnectionString("AzureStorage")); }); if I use the connectingstring from the access Keys it is everytime blazing fast. responds in around 15ms. When…

VIEW QUESTION
Back To Top
Search