Is there a way to increase the cache read size for a process in C, in Windows and/or Linux? I'm doing a lot of reading from disk. I only wish to do this for a single process and not globally. Is it possible?
If not, I will implement a custom caching functionality. Now, is there a way to find out which disk page a file position points to, and how large a page is, so that I can read the entire page and save it to memory?
Thanks! :)
