-
Adrianos Dadis
Building Big Data & Stream processing solutions in many business domains. Interested in distributed systems and enterprise integration.
-
Recent Posts
Categories
Tag Archives: software development
Member of Java Code Geeks development team – Delayed Announcement
I am proud to announce that I am a member of Java Code Geeks development team, since October of 2011. Delayed Announcement. Continue reading
Beneficial CountDownLatch and tricky java deadlock
Discover beneficial CountDownLatch, but watch out tricky java deadlocks. Modern JVMs does not detect such deadlocks. Continue reading
Posted in Java, Software Development
Tagged concurrency, java, Research, software development
12 Comments
Reduce lock granularity – Concurrency optimization
Improve concurrency code by reducing lock granularity. Advises to optimize code that involves synchronization. Continue reading
Posted in Java, Software Development
Tagged concurrency, java, Research, software development
4 Comments
Version control branching strategies 2/2
Branching example that describes release management procedure using a detailed scenario. Continue reading
Posted in Release Management, Software Development
Tagged Release Management, software development
1 Comment
Java String concatenation
String concatenation is one of the most popular habits in programming. You can concatenate strings using String, StringBuffer or StringBuilder. As you may know StringBuilder is the fastest one, as it is not thread safe and is almost identical to … Continue reading
