Why doesn’t Python’s mmap work with large files?
From IEEE 1003.1: The mmap() function shall establish a mapping between a process’ address space and a file, shared memory object, or [TYM] typed memory object. It needs all the virtual address space because that’s exactly what mmap() does. The fact that it isn’t really running out of memory doesn’t matter – you can’t map … Read more