摘要:
https://projects.spring.io/spring-cloud/spring-cloud.html Spring Cloud provides tools for developers to quickly build some of the common patterns in d 阅读全文
摘要:
https://spring.io/projects/spring-cloud-alibaba#overview Features Flow control and service degradation:flow control, circuit breaking and system adapt 阅读全文
摘要:
一、CAS是什么 Compare and Swap, 1)先读取当前值; 2)对数据操作; 3)写入前比较数据库取值是否是步骤1获取的值,如果是直接写入;如果不是继续回到步骤1的操作 适用场景: CAS 适合简单对象的操作,比如布尔值、整型值等; CAS 适合冲突较少的情况,如果太多线程在同时自旋, 阅读全文