zoukankan      html  css  js  c++  java
  • Goals of Distributed Application Design

    Designing a distributed application involves making decisions about its logical and physical architecture and the technologies and infrastructure used to implement its functionality. To make these decisions effectively, you must have a sound understanding of the business processes that the application will perform (its functional requirements), and the levels of scalability, availability, security, and maintainability required (its nonfunctional, or operational, requirements).

    Your goal is to design an application that:

    • Solves the business problem it is designed to address.
    • Addresses security considerations from the start, taking into consideration the appropriate authentication mechanisms, authorization logic, and secure communication.
    • Provides high performance and is optimized for common operations across deployment patterns.
    • Is available and resilient, and can be deployed in redundant, high-availability data centers.
    • Scales to meet the expected demands, and supports a large number of activities and users with minimal use of resources.
    • Is manageable, allowing operators to deploy, monitor, and troubleshoot the application as appropriate for the scenario.
    • Is maintainable. Each piece of functionality should have a predictable location and design taking into account diverse application sizes, teams with varying skill sets, and changing business and technical requirements.
    • Works in various application scenarios and deployment patterns.

    I think this good article.
    http://msdn.microsoft.com/practices/apptype/webapps/default.aspx?pull=/library/en-us/dnbda/html/apparchch1.asp

  • 相关阅读:
    移动端开发touchstart,touchmove,touchend事件详解和项目
    我对JVM的理解
    快速排序
    归并排序(Merge sort)
    希尔排序
    插入排序
    选择排序
    冒泡排序(Bubble Sort)
    java设计模式之单例模式
    Java中反射机制的理解
  • 原文地址:https://www.cnblogs.com/george/p/386073.html
Copyright © 2011-2022 走看看