Performance regression
Opened this issue · 1 comments
al8n commented
al8n commented
I sense that this is caused by contention regarding CAS operation. In the current implementation, the tower
contains both prev and next pointers, in concurrent write situations, this increases the CAS failure possibility.
I will move the current implementation to the doubly
mod, and create a new mod called singly
to keep the previous implementation.