HOWTO: LINUX FILESYSTEMS

Posted Leave a comment

This blog series aims to be a reference guideline by collecting useful knowledge and tutorials about Linux filesystems, mainly about ext3 and ext4. Because, as systems engineers/administrators, when we need to manually perform disk maintenance on a server, we know that a tiny mistake may have large consequences. “Trial-and-Error” is sometimes a good way to […]

GARBAGE COLLECTION, PART 2 – MARK AND SWEEP ALGORITHMS

Posted Leave a comment

“Under the Hood” blog series – getting a deeper technical insight like the mobile solutions, JVM, computer languages, scripts, databases and other interesting tools and technologies. Each blog in this series is a result from our experiences, customer projects and gained knowledge through the web community. The heap space is separated into the young and old generation […]

GARBAGE COLLECTION, PART 1 – DIFFERENT OBJECT LIFE CYCLES REQUIRES DIFFERENT GARBAGE COLLECTION

Posted Leave a comment

“Under the Hood” blog series – getting a deeper technical insight like the mobile solutions, JVM, computer languages, scripts, databases and other interesting tools and technologies. Each blog in this series is a result from our experiences, customer projects and gained knowledge through the web community. Java’s memory model in the runtime data area is […]

JVM MEMORY ARGUMENTS

Posted Leave a comment

“Cookbook” blog series – a collection of best practices for solving problems. Each blog in this series is a result from our experiences, customer projects and gained knowledge through the web community. Problem You want to optimize your Java memory. For example an OutOfMemoryError can occur in several parts of Java’s Runtime Data Area: in […]