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
Currently full user-data is loaded for each member even if only the display name or ID is needed. This can inflate the memory utilization when syncing extremely large groups.
Currently full user-data is loaded for each member even if only the display name or ID is needed. This can inflate the memory utilization when syncing extremely large groups.
get_userdata( int $user_id ): [WP_User](https://developer.wordpress.org/reference/classes/wp_user/)|false
which is called on removal returns a user object when all we need is the display name string.On addition we're calling
getOrCreateUser()
which is also returning a user object when we need the ID and maybe a display name.There are two possible tracks:
The text was updated successfully, but these errors were encountered: