Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!

threads

  • submit to reddit

Multithreading -- Fear, Uncertainty and Doubt

Read this: "How to explain why multi-threading is difficult". We need to talk. This is not that difficult.

1 replies - 3452 views - 06/08/11 by Steven Lott in Articles

Introduction to JOODAMP Framework for Bulk data processing

This article gives a brief introduction about JOODAMP (Java Pooled Data Multi Processor https://joodamp.dev.java.net ) framework which started from scratch. JOODAMP is used for processing huge amount of data. It can be easily integrated with standalone java...

7 replies - 10221 views - 02/20/09 by pradeep Duraisamy in Articles

Java Concurrency In Practice

This book is very well organized and divided into four sections, starting from fundamentals like thread safety, atomicity, race conditions, locking, liveliness and goes on to concurrent collections...

3 replies - 7760 views - 08/06/08 by srini kamisetty in Book Reviews

HashMap is not a Thread-Safe Structure

Last few months I have seen too much code where a HashMap (without any extra synchronization) is used instead of a thread-safe alternative like the ConcurrentHashMap or the less concurrent but still thread-safe HashTable. This is an example of a HashMap used...

16 replies - 30291 views - 05/29/08 by Peter Veentjer in Tips and Tricks

Java closures and threading

My main concern with proposals for closures in Java has always been that it has the potential of making multi-threading so transparent that you forget to think about issues you need to think about, much like happens again and again with mechanisms that make...

2 replies - 1144 views - 02/22/08 by Torbjörn Gannholm in News