Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
9answers
6k views

Java ReentrantReadWriteLocks - how to safely acquire write lock?

I am using in my code at the moment a ReentrantReadWriteLock to synchronize access over a tree-like structure. This structure is large, and read by many threads at once with occasional modifications ...
4
votes
3answers
418 views

ReentrantReadWriteLock - many readers at a time, one writer at a time?

I'm somewhat new to multithreaded environments and I'm trying to come up with the best solution for the following situation: I read data from a database once daily in the morning, and stores the data ...
4
votes
4answers
3k views

File locking (read/write) in Java

I'm writing something to handle concurrent read/write requests to a database file. ReentrantReadWriteLock looks like a good match. If all threads access a shared RandomAccessFile object, do I need ...
2
votes
1answer
28 views

Will Readlock and Writelock cause starvation for writer?

In solving reader write problem, I try to use ReentrantReadWriteLock. I know that all readers can acquire the read lock at the same time, however, write lock has to be wait for all the read locks to ...
2
votes
2answers
465 views

Is it a good practice to wrap ConcurrentHashMap read and write operations with ReentrantLock?

I think in the implementation of ConcurrentHashMap, ReentrantLock has already been used. So there is no need to use ReentrantLock for the access of a ConcurrentHashMap object. And that will only add ...
1
vote
1answer
52 views

How i can convert ReentrantReadWriteLock.readLock or ReentrantReadWriteLock.writeLock into my class objects

What I am trying to do is to get the number of readcounts hold by the current thread at a single time.I wrote a wrapper for that but my problem is that ReadLock() method is returning ...
1
vote
2answers
122 views

When is it safe to use the readLock() method of the ReentrantReadWriteLock class?

It seems pretty clear that using readLock when reading from a file (for example), and using writeLock when writing to it is appropriate. However, if I have an operation where two values are being ...
1
vote
1answer
101 views

Do dormant Threads made so by the readLock() or writeLock() methods in ReentrantReadWriteLock class consume CPU cycles?

I am using Java 6, and reading through Java Concurrency in Practice. I am trying to figure out if when using these methods, if a dormant thread waiting for the lock uses any CPU cycles while it is ...
1
vote
1answer
246 views

Documentation for java.util.concurrent.locks.ReentrantReadWriteLock

Disclaimer: I'm not very good at Java and just comparing read/writer locks between C# and Java to understand this topic better & decisions behind both implementations. There is JavaDoc about ...
0
votes
2answers
41 views

How i can create a wrapper over ReentrantReadWriteLock ReadLock and WriteLock

I have a ReentrantReadWriteLock. The ReentrantReadWriteLock contains ReadLock and WriteLock as subclasses. I want to extend this ReadLock and WriteLock by my custom classes as DummyReadLock and ...
0
votes
1answer
39 views

Can i change java.util.concurrent.locks.Lock into java.util.concurrent.locks.ReentrantReadWriteLock;

I have a method which creates the lock. ReadWriteLock lock = new ReentrantReadWriteLock(); Then I pass this object into a method using Lock Interface. method(Lock lock) inside the method I just ...
0
votes
1answer
75 views

Why the write threads can't get the lock when ReentrantReadWriteLock is non-fair?

From this question How to understand the “non-fair” mode of ReentrantReadWriteLock?, I think all threads have the same opportunity to get the lock no matter which comes first. So I write this code to ...
0
votes
4answers
94 views

what happens when multiple threads want to access a ReentrantReadWriteLock?

When applying a reentrantReadWriteLock, and it is locked, what happens if another thread accesses the Lock while it is already performing another block? (Thus, before it reaches the .unlock) Is the ...
0
votes
2answers
202 views

Thread blocked forever when waits on lock operation

I'm writing a java implementation for two-phase locking. So, I'm using Reentrant lock (ReadWrite lock). The problem is that when a thread executes the lock.readLock.lock() or lock.writeLock().lock() ...
0
votes
3answers
304 views

Using ReentrantReadWriteLock and a boolean flag

I have a cache that gets loaded upfront with a large amount of data (by a background thread) and is unusable until full (it will also get reloaded every so often and be unusable during that load). I ...