I want to check if a username exists in my User source.
I am using the "AD/Database Hybrid" user source.
I first tried to loop through all the users available from "system.user.getUsers", but this was way too slow because we have more than 30000 users in our domain.
I then expected "system.user.getUser" to be faster, but it felt equally slow.
Is there anything else I can try?
Is Ignition reading all the AD users every time I call the getUser command?
Using the LDAP protocol, it should be able to fetch only the users that matches some filter criteria.
Ideally, I would like a fast responding function that returns all usernames that matches a string with wildcards.