- 论坛徽章:
- 0
|
LDAP 数据库(本地)中有约800条记录
使用 ldapsearch 导出为 LDIF 文件,只要0.6s
而使用 Net::LDAP 模块导出,却用了6.9s
ldapsearch 导出命令:
ldapsearch -x -b 'dc=test,dc=com' -D "cn=root,dc=test,dc=com" '(objectclass=*)' -w secret > output.ldif
以下是使用 Net::LDAP 模块的 Perl 脚本ldapdump.pl
#!/usr/bin/perl
use strict;
use Net::LDAP;
use Net::LDAP::LDIF;
my $conn = Net::LDAP->new('localhost',
port => 389, version => 3);
die "ERR: unable to connect: $!\n" if (! $conn);
my $result = $conn->bind('cn=root,dc=test,dc=com', password => 'secret');
$result->code && die("bind error: ", $result->error, "\n");
my $basedn = 'ou=users,dc=test,dc=com';
my $ldif = Net::LDAP::LDIF->new('output.ldif','w', onerror => 'undef' );
$result = $conn->search (
base => $basedn, filter => '(objectClass=posixAccount)'
);
$result->code && die "ERR: search failed: " , $result->error , "\n";
my $count = $result->count();
my @entries = $result->entries;
my $i=-1;
while (++ $i < $count) {
$ldif->write_entry($entries[$i]);
}
$ldif->done();
print "Total $count record found\n"; |
Google了一番,找到一个很好的 Perl 执行时间测试工具:Devel::NYTProf,可参考 http://tech.idv2.com/2008/12/29/perl-nytprof/
使用上述工具测试后发现慢的原因主要不在 Net::LDAP 模块本身,而是 Convert::ASN1::_decode 和 Convert::ASN1::::_decode_tl 两个函数
不知大家有没有遇到过相同的问题? 有好的解决办法没? Any reply or suggestion from u is great appreciated !
[ 本帖最后由 coolend 于 2009-9-1 22:08 编辑 ] |
|