Is a memory page loaded to main memory for each fread/fseek on a file?
I am trying to implement a byte wise hashing along with BTREE in between , (i.e) If the first byte is (For ex:) 200 .I would directly seek to (index+200) which has the pointer to the bucket . But that would be lot wastage, if a whole memory page containing (index+200) is loaded into memory and i would use only a bit of it.