在我的 Web 应用程序中,我使用下面的代码在运行时动态加载模块,但看起来它需要花费大量时间,这使得应用程序有点慢。
eval {
eval "require $package_name";
}
if ($@) {
die"Error while loading module: $@\n";
}
我做了一个小程序来检查eval "require $package_name";
这段代码平均需要多少时间,然后我发现它需要将近 10 秒,这对于 Web 应用程序来说是巨大的。
use strict;
use Time::HiRes qw( gettimeofday tv_interval );
my $startTime = [ gettimeofday() ];
print "Time:@{$startTime}->[0]\n";
eval "require Foo::Bar"; # giving example
my $timeSpent = tv_interval( $startTime, [ gettimeofday() ] );
print "Time Spent:$timeSpent\n";
exit 1;
输出:
Time:1378897304
Time Spent:10.627147
所以我的问题是,为什么这需要这么多时间,有没有其他方法可以解决这个问题?