iv'e implemented a B+tree , my leaf nodes point to start of line(record) positions in a CSV file ,
my question is :
my tree is designed to except a tree - ORDER value i.e. ( The number of Pointers in each tree Node )
to my understanding the order value is suppose to optimize disk access by being able to read an entire disk block into memory in one disk access operation .
what i don't understand is how this comes into play , lets say i know the disk's block size i give the Order an appropriate value according to some calculation
for example : (order * sizeof( Record ) ) < block_size
Accessing the Data :
The pointer as i said holds a file path and an offset to the beginning of the line(Record)
StreamReader reader ;
reader.BaseStream.Position = leaf.Pointers[i].offset ; // leaf is a leaf node in the tree
string record = reader.ReadLine();
1) is the ReadLine() operation equivalent to one disk Access ? if so the way in witch i access my data would be the same (Disk Access wise not search wise ) ,would not be affected by the ORDER (size) of my tree nodes .
2) how would one change the disk access method to be optimized according to disk block size ?