博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[MSDN] Using the Windows Azure Storage Services
阅读量:5024 次
发布时间:2019-06-12

本文共 2412 字,大约阅读时间需要 8 分钟。

Using the Windows Azure Storage Services

Windows Azure Platform

The Windows Azure storage services provide storage for binary and text data, messages, and structured data in Windows Azure. The storage services include:

  • The Blob service, for storing binary and text data
  • The Queue service, for storing messages that may be accessed by a client
  • The Table service, for structured storage for non-relational data
  • Windows Azure drives, for mounting an NTFS volume accessible to code running in your Windows Azure service

Programmatic access to the Blob, Queue, and Table services is available via the Windows Azure Managed Library and the Windows Azure storage services REST API. See these sections for detailed reference information:

  •  
  •  

For conceptual information about using blobs, queues, and tables, see these sections:

  •  
  •  
  •  

About Windows Azure Drives

A Windows Azure drive acts as a local NTFS volume that is mounted on the server’s file system and that is accessible to code running in a role. The data written to a Windows Azure drive is stored in a page blob defined within the Windows Azure Blob service, and cached on the local file system. Because data written to the drive is stored in a page blob, the data is maintained even if the role instance is recycled. For this reason, a Windows Azure drive can be used to run an application that must maintain state, such as a third-party database application.

The Windows Azure Managed Library provides the CloudDrive class for mounting and managing Windows Azure drives. The CloudDrive class is part of theMicrosoft.WindowsAzure.StorageClient namespace. See the  for more information.

Once a Windows Azure drive has been mounted, you can access it via existing NTFS APIs. Your Windows Azure service can read from and write to the Windows Azure drive via a mapped drive letter (e.g., X:\).

For details on getting started with Windows Azure drives, see the .

noteNote
Support for Windows Azure Drives was introduced with . To deploy a service that utilizes Windows Azure Drives, you must deploy to Windows Azure Guest OS 1.1 (Release 201001-01). If you deploy your service to an earlier version, your service may throw a CloudDriveException with the error stringERROR_UNSUPPORTED_OS when it attempts to call methods that operation on Windows Azure Drives. For more information, see  and .

See Also

Concepts

 
 

转载于:https://www.cnblogs.com/RobotTech/archive/2011/07/01/2095657.html

你可能感兴趣的文章
第六届蓝桥杯省赛---三羊献瑞
查看>>
小组项目冲刺第六天的站立会议
查看>>
delphi 给EXE文件增加区段
查看>>
poj 1548(最小路径覆盖)
查看>>
IBM DB2 pureScale 在 Power 平台上的性能调优
查看>>
日更第10期-2015-3-25-processing教程-基础篇-第一讲-一个极其简单的图片显示工具...
查看>>
在运行SSIS包时,如何动态更新变量值
查看>>
碰到MySQL无法启动1067错误问题
查看>>
C 标准库 - string.h之strlen使用
查看>>
实验十 团队作业6:团队项目系统设计改进与详细设计
查看>>
IIS7 配合 vs2013内置 LocalDB使用
查看>>
DB2数据库SELECT语句的三种高级用法
查看>>
oracle 逗号分割,列转行,行转列
查看>>
linux 遇到(vsftpd)—500 OOPS:chroot
查看>>
场景6:具有OpenvSwitch的提供商网络
查看>>
nginx自定义404页面
查看>>
【MINA】用protobuf做编解码协议
查看>>
《剑指offer》重建二叉树
查看>>
unity 中Canvas MatchHeight
查看>>
《DSP using MATLAB》Problem 5.14
查看>>