1.1 Plan the application layers

提到了repository pattern,SoC(Separation of Concern),

进而提及MVC,Action/Action results,Route/Routing (IHttpHandler, MvcHandler, IControllerFactory),Asynchronous Controllers,Views (Strongly-typed views, View-specific model, partial view, Master page),Razor/WebForms view Engine

1.2 Design a distributed application

REST service vs ASP.NET Web Services (ASMX) vs WCF Web API

通过HttpService调用REST API,(为什么不是HttpClient?)

Hybrid application - Azure server + local app server/local db server via Azure AppFabric

3种Session管理模式:InProc(default)/OutProc(StateServer or SQLServer)

1.3 Deign and implement the Windows Azure role life cycle

startup tasks management by AppCmd

1.4 Configure state management

asp.net使用ViewState来管理state信息。

asp.net mvc使用以下方式保存state信息:

  • Cache - memory pool on server, shared across users
  • Session - stored on server, unique for each user
  • Cookie - stored on client, passed with each HTTP request to the server
  • QueryString - passed as part of the URL string
  • Context.Items - part of HttpContext and lasts only the lifetime of that request
  • Profile - stored in db and maintains information across sessions

cookie

  • 4k限制
  • support feature such as Remember Me.

Html5 Web Storage

  • browser compatible

1.5 Design a cache strategy

使用OutputCache属性来控制cache的范围,Location的值:Any(default)/Client/Downstream/Server/ServerAndClient/None。

Donut caching support via Substitution api of asp.net

Donut hole caching:

  1. 在一个返回action的方法(ChildAction)上使用OutputCache属性
  2. 在父View中使用@Html.Action("ChildAction")

如果在Controller上使用OutputCache属性,那么所有支持GET request的方法都具有这个属性,其他的方法不受影响。

分布式Caching要用到AppFabric,(.net版的redis应该也支持吧!)

使用System.Runtime.Caching.dll的默认实现ObjectCache/MemoryCache,来实现data caching。

Html5支持Application Cache API(AppCache),

  1. 生成cache manifest,
  2. 在Layout.cshtml中reference manifest, 如<html manifest="site.manifest">
  3. 设置正确的MIME-type,Response.ContentType="text/cache-manifest"。

Http caching。

1.6 Design and implement a WebSocket strategy

通过hand shake建立WebSocket连接,server端通过HttpContext.Current.AcceptWebSocketRequests(Func<AspNetWebSocketContext, Task>)完成GET到WebSocket的upgrade。

由于WebSocket不含http头信息,因此可能无法穿过firewall。

1.7 Design HTTP modules and handlers

http module和http handler的区别

熟悉asp.net mvc的default modules和handlers。

Chapter 1: Design the application architecture的更多相关文章

  1. JavaScript Application Architecture On The Road To 2015

    JavaScript Application Architecture On The Road To 2015 I once told someone I was an architect. It’s ...

  2. What is Web Application Architecture? How It Works, Trends, Best Practices and More

    At Stackify, we understand the amount of effort that goes into creating great applications. That’s w ...

  3. Cloud Design Patterns: Prescriptive Architecture Guidance for Cloud Applications 云设计模式:云应用的规范架构指导

    1.Cache-aside Pattern 缓存模式 Load data on demand into a cache from a data store. This pattern can impr ...

  4. Catalog of Patterns of Enterprise Application Architecture

    Catalog of Patterns of Enterprise Application Architecture Last Significant Update: January 2003 A s ...

  5. Application Architecture Determines Application Performance

     Application Architecture Determines Application Performance Randy Stafford AppliCATion ARCHiTECTuR ...

  6. Cloud Design Patterns: Prescriptive Architecture Guidance for Cloud Applications

    January 2014 Containing twenty-four design patterns and ten related guidance topics, this guide arti ...

  7. Understanding Spring Web Application Architecture: The Classic Way--转载

    原文地址:http://www.petrikainulainen.net/software-development/design/understanding-spring-web-applicatio ...

  8. Chapter 5: Design and implement security

    Configure authentication Authenticating users IIS authentication Anonymous ASP.net impersonation Bas ...

  9. Chapter 2: Design the user experience

    Apply the user interface design for a web application 介绍了Css的常用属性和html5的新element,以及Htmlhelper的简单方法,如 ...

随机推荐

  1. web前端基础篇⑨

    1.web端.app端 目前实现响应式布局,主要用以下两种方式.CSS原生代码响应式布局 @media screen.bootstrap移动设备优先.自带框架. 兼容性 用原生代码的话 根据不同的屏幕 ...

  2. cookie 保存上次访问url方法

    if (Session[Enums.UserInfoSeesion] == null) { HttpCookie cookie = Request.Cookies[Enums.UserLastAcce ...

  3. OpenSSL 使用拾遗(二)---- X509 证书的 SKID/AKID 字段

    SKID(证书使用者密钥标识符,subject key identifier 的简称)和 AKID(证书颁发机构密钥标识符,authority key identifier 的简称)是 X509 证书 ...

  4. UIProgressView改变高度

    CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 3.0f); progressView.transform = trans ...

  5. Node连接MySQL

    http://blog.fens.me/nodejs-mysql-intro/ http://czpae86.iteye.com/blog/1636302 http://www.cnblogs.com ...

  6. LINUX二十个基础命令

    LINUX二十个基础命令 一. useradd命令 1.命令格式: useradd 选项 用户名 2.命令功能: 添加新的用户账号 3.常用参数: -c comment 指定一段注释性描述.-d 目录 ...

  7. Uber优步宁波司机注册正式开始啦! UBER宁波司机注册指南!

      自2012年Uber开始向全球进军以来,目前已进入全球56个国家和地区的市场,在全球超过270个城市提供服务, 而Uber公司的估值已高达412亿美元. [目前开通Uber优步叫车服务的中国城市] ...

  8. What is the difference between the ways to implement inheritance in javascript.

    see also : http://www.w3school.com.cn/js/pro_js_inheritance_implementing.asp http://davidshariff.com ...

  9. httpclient学习

    httpclient入门:  http://www.ibm.com/developerworks/cn/opensource/os-httpclient/   httpclient证书导入:http: ...

  10. Binary Tree Preorder Traversal -- LEETCODE 144

    方法一:(迭代) class Solution { public: vector<int> preorderTraversal(TreeNode* root) { vector<in ...