1.CAP

CAP , 即 Consistency ,Availability,Partition tolerance。
Consistency : A read is guaranteed to return the most recent write for a given client.
一次读取要保证返回给客户端的内容是最近一次写入的数据, 表示数据一致性。
Availability:A non-failing node will return a reasonable response within a reasonable amount of time (no error or timeout).
未发生故障的节点将在合理的时间范围内有合理响应(不是错误或者超时)。 表示系统可用性。

Partition tolerance: where the system continues to operate even if any one part of the system is lost or fails.即使系统的任何一部分丢失或者失败,系统仍继续运行。 表示系统稳定性(分区容错)。