@Monomorphist using open() or multiple file import() ? Both of those read the file, incrementally, from disk, avoiding the 2G limit. Open() may read the file more than once. MFI could be a lot faster, especially if you have more than one file to load at the same time.
@nikles I probably should have asked: what sort of data is in the text file? Maybe there is another approach.
Craige