I'm moving a cloud application to Azure cloud and need to decide which storage type to use. The stored files will mostly be images and occasionally a .pdf file. The only operations to be done, are basically putting and getting files, and sometimes also retrieving the metadata. By that profile, it seems that the Blob storage is more suitable for my needs.
However, I'm not sure, if using Azure File Service would give me the edge performance-wise. The throughput is supposed to be the same for both storage types.
So, I was wondering, if mounting the File Service and directly storing the files would be faster than using REST calls to communicate with a blob. And if it was, how big of a difference would that be?
I tried to look for the answer to that in this thread: Azure Blob Storage vs. File Service but it seems that the subject of performance has been omitted there.