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
Speed up the PageIterator by evaluating items once per page
The `firebase_admin.auth.list_users().iterate_all()` method uses a sub-class
of PageIterator, which happens to access the .items computed property more
than once for every page of results. This change keeps most of the iterator
state in the class init, meaning we can avoid accessing the computed property
until the current page is exhausted.
This is a lot faster.
0 commit comments