Synchronized vs Lock performance
There are a number of articles on whether synchronized or Locks
are faster. There appear to be opinions in favour of either option. In
this article I attempt to show how you can achieve different views
depending on how you benchmark the two approaches.
I have included AtomicInteger to see how a volatile field compares.
What are some of the differences
The synchronized keyword has naturally built in language support. This can mean the JIT can optimise synchronised blocks in ways it cannot with Locks. e.g. it can combine synchronized blocks.The Lock has additional method such as tryLock which is not an option for a synchronized block.
The test
As the JIT can optimise synchronized in ways a Lock cannot, I wanted to have a test which might demonstrate this and one which might "fool" the JIT.In this test, 25 million locks were performed between each of the threads. Java 6 update 26 was used.
| Threads | 1x synch | 1x Lock | 1x AtomicInteger | 2x synch | 2x Lock | 2x AtomicInteger |
|---|---|---|---|---|---|---|
| 1 : | 0.937 | 0.786 | 0.400 | 1.532 | 1.484 | 0.569 |
| 2 : | 2.766 | 4.597 | 0.676 | 5.398 | 6.355 | 1.278 |
| 4 : | 3.904 | 1.267 | 0.694 | 6.330 | 2.657 | 1.354 |
| 8 : | 3.884 | 0.953 | 1.011 | 5.418 | 2.073 | 2.761 |
| 16 : | 3.207 | 0.869 | 1.171 | 4.817 | 1.656 | 2.800 |
| 32 : | 3.213 | 0.853 | 1.240 | 4.915 | 1.680 | 2.843 |
| 64 : | 3.322 | 0.921 | 1.269 | 5.049 | 1.639 | 2.843 |
Note: It appears that Lock performs best with high numbers of threads. However this may because the performance approaches the single threaded performance. It may do this by avoiding contention and letting just one thread run for long periods of time.
The Code
SynchronizedVsLockTest.javaConclusion
In general, unless you have measured you system and you know you have a performance issue, you should do what you believe is simplest and clearest and it is likely to performance well.These results indicate that synchronized is best for a small number of threads accessing a lock (<4) and Lock may be best for a high number of threads accessing the same locks.
From http://vanillajava.blogspot.com/2011/07/synchronized-vs-lock-performance.html
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)
Tags:






Comments
Christopher Brown replied on Fri, 2011/08/05 - 3:05am
I generally opt for the simplicity of synchronized, however I do use ReadWriteLock instead in some cases (generally, when reads are more common that writes, and when the operation being performed -- especially "writes" -- can be time-consuming) instead of creating a threading bottleneck with synchronized.
As I understand it, obtaining a lock is slower than obtaining a monitor for synchronized, but once you've got the lock, you can access the block at the same time as other readers which is interesting for non-trivial operations with high concurrency (work can be split), whilst still having exclusive access for modifications with the write lock. In high-concurrency or slow operations, this is where synchronized is less effective.
--
Christopher
Endre Varga replied on Fri, 2011/08/05 - 3:30am
Artur Biesiadowski replied on Fri, 2011/08/05 - 4:38am
I'm suprised to see the performance degradation for locks with 2 threads (compared to 4 threads) and to see locks performing better than AtomicInteger. Do you have explanation why 2 threads are so slow for Lock on your machine ?
On my machine, with client jvm, I got
server jvm
Which is more what I would expect. Synchronization being very fast for uncontended case because of biased monitors, getting a lot worse for contended case. Locks being more or less agnostic to number of threeads, without so big degradation for 2 threads compared to 4 threads. AtomicInteger winning in every multilthreading case, because you cannot get really faster than cmp&swap for such mulithreaded counter.So, open questions are:
- why atomic integer is so slow on your machine compare to locks - it is very counterintuitive
- why server jvm is so bad for uncontended synchronization compare to client jvm ?
Endre Varga replied on Fri, 2011/08/05 - 11:15am
in response to:
Artur Biesiadowski
"Synchronization being very fast for uncontended case because of biased monitors, getting a lot worse for contended case."
What I found counterintuitive is the 1 thread case. As far as I know, synchronized blocks use lightweight locking, and inflate the lock to an OS mutex only in the case of contention. How can Lock beat that? Do they use the same optimization?
Endre Varga replied on Fri, 2011/08/05 - 11:49am
"I have included AtomicInteger to see how a volatile field compares."
Btw, are you sure that AtomicInteger is implemented as a volatile field? Isn't it using a compiler intrinsic call with a native CAS instruction? I thought that volatiles are implemented by adding a memory barrier around it's access sites. And that memory barrier is something like "lock add [esp], 0".
Javin Paul replied on Mon, 2011/08/08 - 7:45am
In my opinion its a usecase or scenario which decides what to use obviously if you have just one reader and one writer, synchronized is the best choice because of clean and simple approach while in case of multiple Reader and Single writer , Lock interface can provide much better performance.
Thanks
Javin
20 points about synchronization in Java