Concurrency
-
Core Java
Java Thread deadlock – Case Study
This article will describe the complete root cause analysis of a recent Java deadlock problem observed from a Weblogic 11g…
Read More » -
Software Development
Latency, Throughput and Degree of Concurrency
chrisapotek asked. How do you define throughput and latency for your test? There is not a simple question, so I…
Read More » -
Core Java
Threading stories: ThreadLocal in web applications
This week I spend reasonable time to eliminate all our ThreadLocal variables in our web applications. The reason was that…
Read More » -
Core Java
Java Concurrency with ReadWriteLock
Writing multithreaded java applications is not a piece of cake. Extra care must be taken because bad synchronization can bring…
Read More » -
Core Java
Fork and join in Java 7 – JSR 166 concurrency utilities
One of the most interesting improvements of Java 7 is the better support of concurrency. With JSR 166 Concurrency Utilities…
Read More » -
Core Java
Threading stories: about robust thread pools
Another blog of my threading series. This time it’s about thread pools, robust thread pool settings in particular. In Java…
Read More » -
Core Java
Threading stories: about robust thread pools
Another blog of my threading series. This time it’s about thread pools, robust thread pool settings in particular. In Java…
Read More » -
Enterprise Java
Spring Thread Pool Services
Thread Pools are very important to execute synchronous & asynchronous processes. This article shows how to develop and monitor Thread…
Read More » -
Enterprise Java
Concurrency Pattern: Producer and Consumer
In my career spanning 15 years, the problem of Producer and Consumer is one that I have come across only…
Read More »