我正在尝试使用我的ldap搜索,它有点工作,但每次搜索查询需要10-20秒才能给我回复结果。虽然我必须在我的活动目录中使用类似50.000条目(用户),你会说难怪需要花费很多时间,因为ldap_search是O(N),我不相信它真的需要这么多时间。 / p>
我有一个文本框,可以输入名称。在第三个输入的字母后,搜索功能触发并将textbox.value作为参数传递给下面的PHP文件(通过AJAX)。
<?php
error_reporting(E_ERROR | E_PARSE);
if(filter_input_array(INPUT_POST))
{
$term = filter_input(INPUT_POST, 'term');
$username = 'username';
$password = "password";
$ldap_host = array('host1', 'host2', 'host3');
$ldap_base_dn = "baseDN";
foreach ($ldap_host as $host)
{
$connect = ldap_connect($host);
if($connect)
{
break;
}
if(!$connect && $host == end($ldap_host))
{
exit(">> Could not connect to any of the given LDAP servers. <<");
}
}
ldap_set_option($connect, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($connect, LDAP_OPT_REFERRALS, 0);
ldap_set_option($connect, LDAP_OPT_SIZELIMIT, 20);
$bind = ldap_bind($connect, $username, $password);
$search_filter = '(&(objectClass=person)(cn=*'.$term.'*))';
$attributes = array();
$attributes[] = 'givenname';
$attributes[] = 'mail';
$attributes[] = 'samaccountname';
$attributes[] = 'sn';
$attributes[] = 'cn';
$result = ldap_search($connect, $ldap_base_dn, $search_filter, $attributes);
$ArrayOfHumanoids = array();
if (FALSE !== $result)
{
$entries = ldap_get_entries($connect, $result);
for ($i = 0; $i < $entries['count']; $i++)
{
if (!empty($entries[$i]['givenname'][0]) &&
!empty($entries[$i]['mail'][0]) &&
!empty($entries[$i]['samaccountname'][0]) &&
!empty($entries[$i]['sn'][0]) &&
'Shop' !== $entries[$i]['sn'][0] &&
'Account' !== $entries[$i]['sn'][0])
{
$ad_users[strtoupper(trim($entries[$i]['samaccountname'][0]))] = array('email' => strtolower(trim
($entries[$i]['mail'][0])), 'first_name' => trim($entries[$i]['givenname'][0]), 'last_name' => trim($entries[$i]
['sn'][0]));
array_push($ArrayOfHumanoids, $entries[$i]['cn'][0] . "+");
}
}
}
if(count($ArrayOfHumanoids) == 0)
{
echo "<div>Sorry, no match found!<br></div>";
}
else
{
foreach($ArrayOfHumanoids as $userVar)
{
echo $userVar;
}
}
ldap_unbind($connect);
}
?>
$ term是我在每次击键时传递的搜索参数。在AJAX回调函数中,如您所见,我返回ArrayOfHumanoids,json回调获取并按+ string分割。我对那部分没有任何问题。我只是不明白它为什么这么慢。我是LDAP新手,或者递归。提前谢谢,我感谢任何提示!
答案 0 :(得分:1)
好的,我发现了导致问题的原因。我将主机更改为IP而不是实际的URL,现在它更快,真的。感谢 Ohgodwhy 指出连接是问题,而不是搜索。