Home > Database > Mysql Tutorial > 高聚合低耦合

高聚合低耦合

WBOY
Release: 2016-06-07 16:01:19
Original
1449 people have browsed it

这是软件工程中的概念。 首先要知道一个软件是由多个子程序组装而成, 而一个程序由多个模块(方法)构成! 内聚就是指程序内的各个模块之间的关系紧密程度。偶合就是各个外部程序(子程序)之间的关系紧密程度.。 所以很易明白,为什么要高内聚?模块之间的关系越紧

这是软件工程中的概念。

首先要知道一个软件是由多个子程序组装而成, 而一个程序由多个模块(方法)构成!

内聚就是指程序内的各个模块之间的关系紧密程度。偶合就是各个外部程序(子程序)之间的关系紧密程度.。

所以很易明白,为什么要高内聚?模块之间的关系越紧密,出错就越少!低偶合?子程序间的关系越复杂,就会产生更多的意想不到的错误!会给以后的维护工作带来很多麻烦!

同样的,可以将这个思想用在建设企业数据仓库上。做出以下设计:

1. 把相关的业务数据与粒度数据放在一起。

2. 根据访问热度把数据分开,达到性能优化。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template