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
I discovered that property lookups to custom properties like node.attrs['some_non_custom_attr'] are very slow (0.2 seconds per lookup). I assume that each lookup triggers a lookup on the LDAP server.
What is the correct strategy to get a well-defined set of attributes for all nodes of a search() operation directly without further lookup? Is this the attrlist parameter?
The text was updated successfully, but these errors were encountered:
I discovered that property lookups to custom properties like node.attrs['some_non_custom_attr'] are very slow (0.2 seconds per lookup). I assume that each lookup triggers a lookup on the LDAP server.
What is the correct strategy to get a well-defined set of attributes for all nodes of a search() operation directly without further lookup? Is this the attrlist parameter?
The attrlist relates to search results where no nodes are returned.
I discovered that property lookups to custom properties like
node.attrs['some_non_custom_attr']
are very slow (0.2 seconds per lookup). I assume that each lookup triggers a lookup on the LDAP server.What is the correct strategy to get a well-defined set of attributes for all nodes of a
search()
operation directly without further lookup? Is this theattrlist
parameter?The text was updated successfully, but these errors were encountered: