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
It currently takes a long time to run TargetSuiteCRM when there are circa 100 users.
Part of this is that to fetch all the information about users, we need to:
Fetch all the User entries
Fetch all of each user's related E-mail addresses
Fetch all of each user's security groups
This must all be done at least once, but we don't necessarily have to do it all multiple times.
We also often have to re-fetch users, security groups and E-mail addresses after we've added them, since we need to address them by their ID.
Is it possible to retrieve the ID of a newly-created user?
I think so. The response data from a Create request might include the ID in the response. This might be sufficient to give us all the necessary information.
Do we need to fetch all the information about every user so often?
It's possible we can only re-fetch information about users we know have changed.
The text was updated successfully, but these errors were encountered:
jonathanmaw
changed the title
SuiteCRM target takes a lot of time to run
Reduce the amount of time it takes the SuiteCRM target to run
Mar 31, 2023
It currently takes a long time to run TargetSuiteCRM when there are circa 100 users.
Part of this is that to fetch all the information about users, we need to:
This must all be done at least once, but we don't necessarily have to do it all multiple times.
We also often have to re-fetch users, security groups and E-mail addresses after we've added them, since we need to address them by their ID.
The text was updated successfully, but these errors were encountered: