我正在使用 Windows azure blob 存储。我的问题是 blob 访问需要很长时间。我用来访问 blob 的代码如下:
public void GetBlob() // blob access
{
Container = BlobClient.GetContainerReference(ContainerName);
Blob = Container.GetBlobReference(BlobName);
try
{
Blob.FetchAttributes();
}
catch (StorageClientException)
{ Blob = null; } // blob not present
}
请建议代码是否有任何改进空间以提高性能?