Update 分布式基础.md

This commit is contained in:
tldzyx 2018-03-26 16:32:45 +08:00 committed by GitHub
parent f6816dea48
commit 3e91614276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@
1. 强一致性:新数据写入之后,在任何数据副本上都能读取到最新值;
2. 弱一致性:新数据写入之后,不能保证在数据副本上能读取到最新值;
3. 最终一致性:新数据写入之后,只能保证过了一个时间窗口才能读取到最新值;
3. 最终一致性:新数据写入之后,只能保证过了一个时间窗口才能读取到最新值;
### 4. 可扩展性