if you know the unique keys then declare internal table as hashed then use keys to search. otherwise, sort then read.. binary search is best practice.
or if you're populating the table from SELECT then you may try to consider SELECT SINGLE or SELECT.. UP TO n ROWS.