Replace .map instances with for loops in Repository class (abstractRepository.ts) #2749
Labels
prio-low
This is nice to have.
scope-performance
Performance issue and ideas to improve performance.
When I use the following benchmark to compare
for
loops and maps:I get the following results:
We are currently using
.map
inkeys()
,values()
,entries()
. Maybe we can optimize by replacing the .maps with for loops.The text was updated successfully, but these errors were encountered: