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
Refactor #clean_old_tokens to reduce computational complexity.
* Previous version featured an `Enumerable#min_by` loop _inside_ a
`while` loop, resulting in `O(n^2)` complexity.
* Instead, break things into two separate loops, and skip altogether if
they aren't even necessary.
0 commit comments