|
|
|
|
|
by MattPalmer1086
396 days ago
|
|
Imagine you have a 12Gb zip file, and you want to add one more file to it. Very easy and quick if the index is at the end, very slow if it's at the start (assuming your index now needs more space than is available currently). Reading the index from the end of the file is also quick; where you read next depends on what you are trying to find in it, which may not be the start. |
|
The point is, not all is black and white. Where to put the index is just another trade off.