Powershell Connector speed up?

Hi,

we are running 9.1.

I have developed a little PowerShell connector importing a legacy app via SOAP. When I want to do an initial sync, it takes ages as one response per user takes a second. Is there any way to speed up the sync project by getting more threads?

Best, Denny

Parents
  • Hi Denny

    Is there a way for you to get all of the users with the same data as one? Then you could get all of the users and insert them in a dictionary. And when the connector wants to get one user, you look first in the dictionary for it. It it's there, return it, if not retrieve it from the external system.

    Hth

    Henrik

Reply
  • Hi Denny

    Is there a way for you to get all of the users with the same data as one? Then you could get all of the users and insert them in a dictionary. And when the connector wants to get one user, you look first in the dictionary for it. It it's there, return it, if not retrieve it from the external system.

    Hth

    Henrik

Children