Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
55 views

Best Practice to design tables to support update one field faster using sql server

I am working on Workflow like system. I have one task table and status field. Value for status can be one of New,ready,processing,error,abort,done. I have about 7 processes which will be triggered ...
4
votes
2answers
150 views

What strategy to use in Java for hierarchical reentrant read/write locking?

I'm looking for en efficient system to have a series of read/write locks organized hierarchically to manage access to hierarchically organized resources. If a subtree is locked for write, then no ...
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
2answers
241 views

Mix volatile and synchronized as a read-write lock

Consider a primitive type variable with lots of threads reading and a few threads writing, will the following code work correctly? If it will, does it provide better performance than 1). declaring ...
2
votes
2answers
94 views

Shrinking file that is opened in read/write

In perl: I have a file opened in read/write, with an exclusive lock. open( $f, "+< $filename" ); flock( $f, LOCK_EX ); If I write more data to the file than it previously held, the file will ...
1
vote
1answer
120 views

Android contentprovider lock

Should I use a ReadWriteLock on the functions of the contentprovider? In the query of the contentprovider I do getReadableDatabase, then check if its open and do the query. But sometimes it crashes ...
1
vote
6answers
393 views

Should getters/setters of primitive types be locked with ReadWriteLock in a multithreading application?

I have a Java class that is used in a multithreading application. Concurrent access is very likely. Multiple concurrent read operations should not block so I'm using a ReadWrite lock. class Example { ...
1
vote
3answers
259 views

Can I read from a SQLite db while writing to it on the iPhone?

Is it possible to read from a SQLite db while it's being written to? I'm aware that access is blocked for writes when it's being written to, but is that the same for reads?
0
votes
2answers
321 views

need read-write lock in objective c or c

I can't seem to find any read-write locks for Objective C. This is for iphone dev. Any ideas? The appendix in this paper has some code, but it is incomplete.
0
votes
3answers
167 views

How do I determine if a thread has a lock?

I am writing an Objective-C class that I want to be thread safe. To do this I am using pthreads and a pthread_rwlock (using @synchronized is overkill and I want to learn a bit more about pthreads). ...
0
votes
2answers
267 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 ...