注册 | 登录读书好,好读书,读好书!
读书网-DuShu.com
当前位置: 首页出版图书科学技术计算机/网络操作系统实战Windows Azure:微软云计算平台技术详解

实战Windows Azure:微软云计算平台技术详解

实战Windows Azure:微软云计算平台技术详解

定 价:¥69.00

作 者: 徐子岩 编著
出版社: 电子工业出版社
丛编项:
标 签: 计算机理论

ISBN: 9787121145476 出版时间: 2011-10-01 包装: 平装
开本: 16 页数: 440 字数:  

内容简介

  《实战Windows Azure:微软云计算平台技术详解》来自于微软Windows Azure MVP的技术实践和心得体会,主要包括Windows Azure平台的基础知识、使用方法、功能特点以及如何基于Windows Azure平台设计高可靠、可扩展的应用程序,几乎涵盖了Windows Azure平台的所有内容。全书分为8章,作者试图通过一个贯穿始终的示例项目以尽量真实的视角介绍整个Windows Azure平台。第1章和第2章包括云计算的基础知识和Windows Azure平台的概述、计费模式和商业案例。第3章到第7章,通过完整的示例项目系统地介绍Windows Azure(计算服务、存储服务和部署调试)、SQL Azure和Windows Azure AppFabric。最后一章介绍了Windows Azure平台的高级应用,包括更加深入的功能点、如何在项目中灵活使用Windows Azure平台的各种功能,以及如何更好地构建基于Windows Azure的应用程序。《实战Windows Azure:微软云计算平台技术详解》适合对云计算技术,特别是微软的Windows Azure平台有兴趣的架构设计人员以及一线开发人员阅读,同时也可作为Windows Azure平台的参考书籍,也适合于有意采用Windows Azure技术的公司决策人员和IT人员参考阅读。

作者简介

暂缺《实战Windows Azure:微软云计算平台技术详解》作者简介

图书目录

第1 章云计算技术简介1
11 云计算所要解决的问题1
12 云计算平台的分类3
13 微软云计算平台Windows Azure5
131 高可用性5
132 易于部署和伸缩5
133 全球化6
134 开发语言和开发模型7
第2 章 Windows Azure 云计算平台9
21 Windows Azure 平台的组成部分和主要功能9
211 Windows Azure 9
212 Windows Azure 相关名词11
213 SQL Azure  15
214 Windows Azure AppFabric  16
215 Windows Azure Connect 17
22 Windows Azure 收费模式 18
221 Windows Azure 账户 18
222 Windows Azure 的计费模式 18
23 Windows Azure 平台成本及性能案例分析 21
231 北欧某健康资讯网站 21
232 挪威某零售业管理系统23
233 某企业应用平台23
第 3 章 Windows Azure 计算服务25
31 准备Windows Azure 开发环境25
32 第一个Windows Azure 应用程序28
321 创建Cloud Project 和Web Role28
322 使用本地模拟器运行和调试Azure 应用程序30
323 购买Windows Azure 32
324 通过Developer Portal 创建Hosted Service34
325 向Staging 环境部署Windows Azure 应用39
326 向Production 环境切换43
33 Windows Azure 项目组成44
331 Windows Azure Project 介绍45
332 Role 及其生命周期模型55
333 Configuration 的变更和通知机制58
334 Windows Azure 本地模拟器63
第 4 章 Windows Azure 存储服务65
41 创建新的Storage Service66
42 使用Table Service 69
421 Table Service 的特点70
422 使用Table Storage 保存相册信息74
423 基于Repository 模式的Table Service 数据访问层90
424 使用Table Service 的事务操作98
43 使用BLOB Service 103
431 BLOB Service 的特点104
432 使用BLOB Service 保存照片109
433 使用Shared Access Signatures 121
434 使用Cloud Drive 125
44 使用Queue Service 133
441 Queue Service 的组成及特点133
442 在创建照片部分加入生成缩略图的Queue Message135
443 创建生成缩略图的Worker Role 137
444 实现生成缩略图操作139
第 5 章 Windows Azure 部署与管理148
51 使用Visual Studio 部署Azure 应用148
511 Windows Azure Management API 介绍148
512 配置Management API 证书 151
513 通过Visual Studio 部署 155
52 管理Windows Azure  158
521 Windows Azure 平台高可用性的实现 159
522 部署与就地升级 160
523 VIP 转换 160
524 Windows Azure 平台的管理工具 162
53 使用Windows Azure 诊断服务 173
531 Diagnostics Monitor 介绍 174
532 通过代码启动Diagnostics Monitor 176
533 通过代码配置Diagnostics Monitor 180
534 通过远程API 配置Diagnostics Monitor 184
535 使用NLog 扩展在Windows Azure 平台输出日志 188
536 使用IntelliTrace 获取异常信息 193
54 回顾与总结 198
第 6 章 SQL Azure  200
61 SQL Azure 特点 200
611 易于维护和高可用性 201
612 弹性和伸缩性 201
613 开发方式的一贯性 202
62 SQL Azure 的订阅模式 202
63 SQL Azure 服务器端架构 203
64 SQL Azure 与SQL Server 的差异 205
65 创建SQL Azure 服务 206
651 创建SQL Azure Server  206
652 通过Developer Portal 创建数据库 209
66 使用工具管理SQL Azure 211
661 使用SQL Server Management Studio 管理SQL Azure 211
662 使用Project Houston 管理SQL Azure 214
67 使用SQL Azure 217
671 创建Aurora 的SQL Azure 数据库 218
672 向SQL Azure 导入数据 222
673 在应用程序中使用SQL Azure  224
674 基于Windows Azure 和SQL Azure 的开发部署流程 229
68 回顾与总结 231
第 7 章 Windows Azure AppFabric 232
71 服务总线(Service Bus) 233
711 Service Bus 的工作方式234
712 使用Service Remoting 开放本地的地理位置服务237
713 使用Eventing 模式246
714 配置Service Bus 运行环境251
72 访问控制服务(Access Control Service) 253
721 访问控制服务的原理253
722 为地理位置服务加入访问控制255
73 回顾与总结266
第 8 章 Windows Azure 平台高级应用267
81 Role Endpoint 和内部通信267
811 Role Endpoint 介绍267
812 基于Input Endpoint 通过Worker Role 发布WCF 服务269
813 动态指定WCF 的发布地址273
814 使用Internal Endpoint 实现Role 的内部通信275
815 总结279
82 通过远程桌面功能访问Windows Azure 的虚拟机279
821 通过Visual Studio 配置远程桌面功能279
822 总结285
83 通过Windows Azure Connect 实现本地计算机和云端虚拟机的互连285
831 什么是Windows Azure Connect286
832 申请Windows Azure Beta Program 287
833 将本地计算机和Azure VM 加入Connect 288
834 Windows Azure Connect 的功能294
84 Web Role 的Full IIS 特性296
841 基于Hosted Web Core 方式部署Web Role296
842 基于Full IIS 部署Web Role298
843 使用Full IIS 时的注意事项300
844 使用Full IIS 模式部署多站点和虚拟目录301
845 总结305
85 通过Startup 功能实现COM 组件调用305
851 使用Startup 功能执行简单的命令305
852 Startup 配置项介绍307
853 使用Startup 功能注册COM 组件307
86 使用Windows Azure CDN 309
861 Windows Azure CDN 的原理309
862 使用Blob Service CDN 313
863 使用Hosted Service CDN 316
864 总结319
87 云端的分布式缓存服务AppFabric Cache  319
871 缓存与分布式缓存 319
872 创建Windows Azure AppFabric Cache 322
873 使用Windows Azure AppFabric Cache 324
874 总结 331
88 Access Control Service 20  332
881 ACS v2 和统一认证 332
882 ACS v2 的认证流程 334
883 基于Live ID 和Google ID 的ASPNET MVC 网站 336
884 控制ACS 的验证逻辑 344
89 云端的报表:SQL Azure Reporting CTP  352
810 为SQL Azure 实现备份和恢复功能 361
8101 使用Database Copy 361
8102 使用Data-tier Application Framework 20  363
8103 使用SQL Azure Data Sync CTP  371
8104 三种SQL Azure 备份恢复实现的对比 378
811 基于SQL Azure 数据库的OData 服务 379
812 Windows Azure 与扩展性 382
8121 横向扩展和纵向扩展 382
8122 应用程序层的横向扩展 385
8123 数据层的横向扩展 389
8124 SQL Azure Federation 预览 395
8125 总结 399
813 异步工作模型 400
8131 什么是异步工作模型 400
8132 Windows Azure 中的异步工作模型 402
8133 在Aurora 项目中实现异步工作模型 410
8134 总结 421
本书参考资料  422

本目录推荐