views:

160

answers:

1

The ConcurrentHashMap of JDK uses a lock-striping technique. It is a nice idea to minimize locking overhead. Are there any other libraries or tools that take advantage of it? For example, does database engine use it?

If the technique is not so much useful in other areas, what is the limitation of it?

+1  A: 

Have a look at Non-blocking almost FIFO.

pgras
nice link! thx for the good reading
Will