Problem Statement
When is a memory-mapped file (MappedByteBuffer) a good fit?
Explanation
Memory mapping lets the OS page data on demand and can be very fast for large random access workloads. It uses native resources and requires careful unmapping and bounds handling.