网络应用系统设计的基本原则

系统功能

KISS原则: keep it simple and stupid

- 系统实现

容错原则:Design with failure in mind

因为没有无故障的软件
也没有无故障的硬件
,所以,没有无故障的系统。

过犹不及原则:Just in time

  . 设计够用就好

  . 部分重构优于整体重构

和前面的KISS原则可以接合着一块用。另外8020原则也差不多是这个意思。

- 系统架构

数据拆分原则:Partition your data

  . 负载均衡

  . 容易继续拆

  . 减少依赖

冗余原则:Redundancy

  . 减少单点故障

  . 系统能够自动恢复

监控原则:Monitor, monitor, monitor

  . 业务透明

  . 多角度:客户角度和系统角度

猜你喜欢

转载自jackguo1123.iteye.com/blog/1497580