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
perf: Moved array_merge out of the loop when paginating results
Calling `array_merge` inside a loop will copy the entire array into memory on every iteration (`O(n)`), moving this out of the loop will make it `O(1)`, reducing memory usage.
0 commit comments