Filter by tag Concurrency
Number of results: 2
-
Concurrency programming in Java
11 commentsVolatile The Java volatile keyword is used to mark a Java variable as 'being stored in main memory'. More precisely that means, that every read of a volatile variable will be read from the computer's main memory, and not from the CPU cache, and that every write to a vo …
Read More -
Java thread analyzer
11 commentsIBM Thread and Monitor Dump Analyzer for Java A tool that allows identification of hangs, deadlocks, resource contention, and bottlenecks in Java threads. Run jstack with the 'jboss' user: $ sudo -u jboss jstack -l PID > jstack_PID.txt Ref: IBM DeveloperWorks: Java A …
Read More