http://qs321.pair.com?node_id=433658


in reply to Displaying/buffering huge text files

Instead of indexing every single line, you could index a fraction of them (say every 10th or every 25th) and just skip a few lines after seeking.

If they want to see line 57, seek to line 50 using your index, and skip 7 lines after reading.