I\'m trying to figure how to use mmap with a gzip compressed file. Is that even possible ?
import mmap import os import gzip filename = r\'C:\\temp\\data.gz\' file
Well, not the way you want.
mmap() can be used to access the gzipped file if the compressed data is what you want.
mmap() is a system call for mapping disk blocks into RAM almost as if you were adding swap.
You can't map the uncompressed data into RAM with mmap() as it is not on the disk.