Closed astutecat closed 3 years ago
This PR will make use of :ets.first and :ets.next to traverse ETS and test the given predicate against entries, which should yield some performance gain over using tab2list and then iterating over the list with Enum.any?
:ets.first
:ets.next
Enum.any?
This PR will make use of
:ets.first
and:ets.next
to traverse ETS and test the given predicate against entries, which should yield some performance gain over using tab2list and then iterating over the list withEnum.any?