You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't surprising on JS since its runtime doesn't have the sequence concatenation optimization, but Go does. Encode doesn't have the same issue. I suspect that sequence slicing is at fault: it should be O(1) time in the Go backend but perhaps is unintentionally making a copy.