rdms
rdms copied to clipboard
core: IndexIter optimizations.
Using trait object gives convenience of abstraction. But performance can be an issue. Once such design choice is core::IndexIter trait object.
Validate the performance penalty in using IndexIter and if possible replace it with concrete types/traits.
A good first candidate is core::CommitIterator, which returns IndexIter in its present form.