← Back to context Comment by commandlinefan 5 months ago > Dump whole file into buffer as one string... unless the file is too big to fit into memory? 1 comment commandlinefan Reply writebetterc 5 months ago Memory will always be the limiting factor here. A strong adversary can ensure that you must know the whole list in order to sort it.You can always mmap the file instead and let the OS page in and out parts of the file, however :-).
writebetterc 5 months ago Memory will always be the limiting factor here. A strong adversary can ensure that you must know the whole list in order to sort it.You can always mmap the file instead and let the OS page in and out parts of the file, however :-).
Memory will always be the limiting factor here. A strong adversary can ensure that you must know the whole list in order to sort it.
You can always mmap the file instead and let the OS page in and out parts of the file, however :-).