Hi,
For performance requirements,I am looking for a way to implement
exclusive operation between write and write,read and write except read
and read.
Any suggestions?
wy.
Chris Uppal - 24 Jan 2006 09:22 GMT
> For performance requirements,I am looking for a way to implement
> exclusive operation between write and write,read and write except read
> and read.
If you are using 1.5 then see package java.util.concurrent.locks.
-- chris
bugbear - 24 Jan 2006 10:42 GMT
> Hi,
> For performance requirements,I am looking for a way to implement
> exclusive operation between write and write,read and write except read
> and read.
> Any suggestions?
Yep. Call this:
http://jakarta.apache.org/commons/collections/api-release/org/apache/commons/col
lections/FastHashMap.html
BugBear