Hi all, on a linux box with plenty of memory (a few Gigs), I need to access randomly to a big file as fast as possible.
I was thinking about doing a cat myfile > /dev/null
before accessing it so my file pages go in memory sequentially, hence faster than with a dry random access.
Does this approach make sense to you?