One result call per record
Hi all,
We are experiencing something pretty odd.
CentOS 5 python2.4.4 python-ldap 2.3.4
While polling it appears that we have to call result for every record that
is waiting to be read. Since we added a 250 millisecond delay between calls
larger queries are taking a really long time.
def searchForAsync(self, searchString):
id = self.connection.search('dc=my,dc=base,dc=rec',2,searchStr
ing,['*','+'])
result = [None, None]
count = 0
start = time.time()
while(result[0] == None):
count = count + 1
result = self.connection.result(id, True, 0)
time.sleep(0.25)
print "Total call count: " + str(count)
print "Total query time: " + str(time.time - start)
return result
The result: With 165 records the total call count is 167 and the total time
42.1 seconds.
Is this expected or did we do something wrong?
Thanks for your help!
Ron
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Python-LDAP-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/python-ldap-dev
high level API for ldap object handling
Hi all,
I've been using python-ldap a lot, thanks for the great work!
In my use of python-ldap I've often used a self-developed high level
class for ldap-object handling.
Adding a new ldap entry for example (ld is a python-ldap object):
lo = LdapOO.LdapObject()
lo.set_dn_attribs(['cn'])
lo.add_attribute_value('cn','test2')
lo.set_base_dn('ou=People,o=myorg')
lo.add_attribute_value('objectClass','inetOrgPerson')
lo.commit_s(ld)
or modifying an existing ldap entry:
res=ld.search_s('ou=People,o=fakenet',ldap.SCOPE_SUBTREE,'(sn=surname)')
lo = LdapOO.LdapObject(res[0][0],res[0][1])
lo.add_attribute_value('sn','surname')
if (not lo.has_attribute('street')):
lo.add_attribute_value('street','new street')
lo.commit_s(ld)
since I use this class often, I was wondering if there are more people
that like such a high-level API, and perhaps this can be developed
further and added to python-ldap ?
regards,
Olivier Sessink
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Python-LDAP-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/python-ldap-dev
