What is the advantage of new Lock interface over synchronized block in Java? You need to implement a high performance cache which allows multiple reader but single writer to keep the integrity how will you implement it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The advantages of a lock are
Note that this is explained in the javadoc of Lock and its subclasses. A high performant cache could be implemented using a ConcurrentMap. |
|||||||
|
|
You need to know when to use Lock and when to use synchronized blocks/methods.
|
|||
|
Lockis hardly new, it's been around since Java5, i.e. since 2004 – skaffman Nov 6 '11 at 12:09