You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
236 B
Markdown

# Disruptor
## 1. 介绍
- 起源: LMAX 2010
- 成就: 无锁高并发(6,000,000 Order/s)
## 2. 高性能
- 定长数组/预加载
- CAS代替锁(1-20-700), 单线程的CAS避免锁的使用
- Cache Padding
- Memory Barrier
## 3.