Hi Jacob,
I completely agree with Christian.For a simple read where there will be only 1 result, simple read will be faster than sort and binary search.
In general however , we use sort and binary search where we are to have a quite a few number of hits, and the read is made on a large number of records.
It seldom makes sense to do a sort and binary search if the table has less than 100 records.