ReentrantReadWriteLock is a Java class providing the lock for working with multiple threads.
5
votes
3answers
66 views
Is it safe to lock multiple ReentrantReadWriteLocks in the same try block?
Let's say I have two critial resources, foo and bar. I protect them with some ReentrantReadWriteLocks
ReentrantReadWriteLock foo = new RRWL() ...
ReentrantReadWriteLock bar = new RRWL() ...
Most ...
0
votes
0answers
58 views
scala collections circular buffer
Just messing about here, with circular buffers. Is this a sensible implementation or is there a faster/more reliable way to skin this cat?
class CircularBuffer[T](size: Int)(implicit mf: Manifest[T]) ...
0
votes
0answers
40 views
Resource manager with ReentrantLocks
I am trying to implement a resource handler class that assigns the resources (strings, stored in an array) to multiple clients that can try to acquire the lock on a set of resources and unlock them by ...
2
votes
0answers
39 views
Why does a lock force you to wait until you actually have a lock?
In Java's implementation locking, there is no way to atomically upgrade a lock from a read lock to write lock. For example, the following code snippet fails
ReentrantReadWriteLock lock = new ...
...
0
votes
2answers
53 views
ReadWriteRentrantLock
My understanding of the RentrantReadWriteLock is that it allows many reads at the same time but only one write.
When we try to acquire a read lock the doc states
Acquires the read lock if the write ...
1
vote
5answers
340 views
Correct usage of ReentrantReadWriteLock while signalling from writer to reader?
The usage pattern arose from following reasons:
I need read tread to wait for data if it is absent with conditions
Read lock does not support condition, so condition should be taken from write lock
...
0
votes
3answers
73 views
what happen to the readwritelock if current thread crashes
As title says, curious what happens to the readwritelock when the current thread crash.
readlock.lock();
try {
...
} finally {
readlock.unlock();
}
We can definitely unlock in the ...
0
votes
1answer
83 views
Servlet design, concurrent access to field
I have rather general question, please advice.
I have a servlet.
This servlet has private field.
Private field is a kind of metadata stuff (public class Metadata{//bla-bla-bla}).
When GET request ...
2
votes
2answers
124 views
Are read and write locks in ReentrantReadWriteLock somehow related?
Please explain me more the contract. I can't figure out if two locks contained in ReentrantReadWriteLock somehow related? Or these are just a bundle of two normal locks?
1
vote
4answers
141 views
How to wait for data with ReentrantReadWriteLock?
It is said, that ReentrantReadWriteLock is intended for one writer and multiple readers.
Nevertheless, readers should wait until some data is present in the buffer.
So, what to lock?
I created ...
4
votes
3answers
359 views
ConcurrentHashMap vs ReentrantReadWriteLock based Custom Map for Reloading
Java Gurus,
Currently we have a HashMap<String,SomeApplicationObject> which is being read frequently and modified occasionally and we are having issues that during the modification/reloading, ...
1
vote
0answers
221 views
My thread acquires the read lock but when trying to release it IllegalMonitorStateException is thrown
my application is deployed on Weblogic 10.3.5 with java 6 update 30. I encountered with the following error while executed this code lines:
lock.readLock().lock();
try {
holder = ...
1
vote
2answers
322 views
Java : ReentrantReadWriteLock with priority
The following is the typical reader and writer pattern (a lot of reads and few writes)
private ReadWriteLock lock = new ReentrantReadWriteLock();
private int value;
public void writeValue(int ...
1
vote
2answers
145 views
ReentrantReadWriteLock hang
any idea why this constructor hangs indefinitely? I'm trying to create a thread-safe singleton.
private RWLockedSingleton() {
lock.writeLock().lock();
System.out.println("we're done!");
...
0
votes
0answers
102 views
How to find out, if ReentrantReadWriteLock's ReadLock is held before API Level 9
I noticed, that Java's ReentrantReadWriteLock is different in API versions <9 and >=9. Especially important for me, the method getReadHoldCount() isn't available in the older version.
Now my ...
1
vote
1answer
115 views
ReentrantReadWriteLock delegation to parent thread
I want to submit tasks to a ForkJoinPool or ParallelArray from a thread holding a write lock. Access to our domain model is protected by checks that the current thread holds the relevant lock. To ...
3
votes
1answer
119 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 ...
0
votes
2answers
90 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 ...
1
vote
1answer
170 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 ...
0
votes
1answer
104 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
193 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
246 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 ...
5
votes
3answers
2k 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 ...
0
votes
2answers
398 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() ...
1
vote
2answers
230 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 ...
2
votes
1answer
162 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 ...
0
votes
3answers
447 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 ...
2
votes
2answers
1k 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
362 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 ...
4
votes
4answers
6k 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 ...
0
votes
2answers
376 views
Java ReentrantReadWriteLock requests
Just a quick question about ReadWriteLocks in Java (specifically the ReentrantReadWriteLock implementation) as I don’t find the sun documentation clear.
What happens if a read lock is held by a ...
29
votes
8answers
11k 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 ...