8000 Slower cursor updates in 3.6.x · Issue #284 · immutable-js/immutable-js · GitHub
[go: up one dir, main page]

Skip to content
Slower cursor updates in 3.6.x #284
Closed
@baskerville

Description

@baskerville

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0