<div dir="ltr">Without doing measurements, I would guess the second one,<br>you can combine that with taking a read table_lock first in your transaction.<div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Feb 26, 2021 at 11:03 AM Vance Shipley <<a href="mailto:vances@motivity.ca">vances@motivity.ca</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">If I need to lookup a list of keys which is the better approach? Why?<br>
<br>
Fselect = fun(Keys) -><br>
        MatchHead = {'_', '$1', '$2'},<br>
        F = fun(Key) -><br>
                {'=:=', '$1', Key}<br>
        end,<br>
        MatchConditions = [list_to_tuple(['or' | lists:map(F, Keys)]),<br>
        MatchBody = ['$_'],<br>
        MatchFunction = {MatchHead, MatchConditions, MatchBody},<br>
        MatchExpression = [MatchFunction],<br>
        mnesia:select(Table, MatchExpression)<br>
end,<br>
mnesia:transaction(Fselect, [Keys]).<br>
<br>
Fread = fun F([Key | T], Acc) -><br>
                [R] = mnesia:read(Table, Key),<br>
                F(T, [R | Acc]);<br>
        F([], Acc) -><br>
                lists:reverse(Acc)<br>
end,<br>
mnesia:transaction(Fread, [Keys. []]).<br>
<br>
<br>
--<br>
     -Vance<br>
</blockquote></div>