Concept Flow - Memory-mapped arrays for large data
Create or open large file
Memory-map file as numpy array
Access array data directly from disk
Read or write parts of array
Changes saved to disk automatically
Close file
This flow shows how a large file is memory-mapped as a numpy array, allowing direct access to data on disk without loading all into memory.