how to find the variable get updated by simultaneous threads
Krishnaa Kumar
Greenhorn
Joined: May 05, 2011
Posts: 25
posted
0
Hi,
I have variable that gets updated by different threads simultaneously. I don't want to control the simultaneous update through synchronization. Instead, i need to know how many threads updated the variable value simultaneously. I should not use synchronization concept as it will increase the serving time of those threads by waiting to get object lock released. How can i achieve this in Java.
-Krishna
John Jai
Bartender
Joined: May 31, 2011
Posts: 1778
posted
0
Use a static counter and allow the variable update in a public method. Whenever an update is done, you can increment the counter.
Krishnaa Kumar
Greenhorn
Joined: May 05, 2011
Posts: 25
posted
0
I have many concurrent running http request serving threads. They will be creating an Object(? extends Object) for every request and save the object in a list.
Advice me some good data structure to implement this list.
I can't use ArrayList since it was not thread safe.
I dont like to use Vector - since its synchronized, it will make other threads to wait when one of the http thread was saving the object.
Also tried LinkedList, but there is data loss due to concurrent update.
Tim Moores
Rancher
Joined: Sep 21, 2011
Posts: 2407
posted
0
I should not use synchronization concept
This does not make sense. Whenever you use shared mutable state, you must synchronize access to it, or the results will be unpredictable. Obviously, you should not synchronize the entire code, but just those parts that access the shared mutable state. If this is just an integer counter you can use an AtomicInteger for the task.