Explore >> Select a destination


You are here

blog.bdoughan.com
| | boyter.org
3.1 parsecs away

Travel
| | [AI summary] This blog post compares the performance of Java and Go when processing large files, highlighting the challenges Java faces with memory-mapped files and the efficiency of Go's concurrency model. The author tests various implementations, including a Java solution with threads and queues, and finds that Go's approach is faster, though Java can be optimized with batch processing and efficient queue implementations. The post concludes that for optimal large file processing, Go is more suitable, but Java can still be competitive with the right techniques.
| | initialcommit.com
1.9 parsecs away

Travel
| | SAX parser is yet another XML parser provided by JDK which parses documents in a more optimized and faster way.
| | jamesward.com
2.9 parsecs away

Travel
| | [AI summary] The author provides a Java and Akka code example demonstrating how to compose Futures to execute multiple tasks concurrently and wait for their completion.
| | veskoiliev.com
18.9 parsecs away

Travel
| Jacoco is a widely used library to measure test code-coverage in JVM-based projects. Setting it up for Android applications has a few quirks and having multiple flavours, using Kotlin and writing (...