greensky00 / skiplist

Generic lock-free Skiplist container pure C implementation, STL-style set, map
MIT License
139 stars 20 forks source link

Is this able to have a higher performance than the implementation in Redis? #3

Open jovany-wang opened 4 years ago

jovany-wang commented 4 years ago

From the information in your benchmark result, it has a higher performance than STL set with mutex. But I'd like to know if there has a higher performance than the skiplist in Redis? (BTW, skiplist in Redis is implemented without thread-safe guarantee .)