Tagged Questions
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 ...