Closed
Description
I'm experiencing a performance degradation with 3.6.x.
It seems to be caused by the following function:
function newKeyPath(head, tail) {
return Seq(head).concat(tail).toArray();
}
If I replace it with:
function newKeyPath(head, tail) {
return head.concat(tail);
}
performances are back to normal.
Metadata
Metadata
Assignees
Labels
No labels