Tagged Questions
4
votes
1answer
350 views
Behavior of mmap'd memory on memory pressure
I have a large tar file (60GB) containing image files. I'm using mmap() on this entire file to read in these images, which are accessed randomly.
I'm using mmap() for the following reasons:
Thread ...