Thread IO::Socket::SSL und require
(18 answers)
Opened by bianca at 2015-04-14 17:10
Bei mir dauert ein ping test auch ca. 4 Sekunden.
Also so wie Perl auch. Ich schaute mir mal das genauer an. Profiling ist hilfreich. Testcode a.pl: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 use strict; use warnings; use Net::FTP; require IO::Socket::SSL; IO::Socket::SSL->import(); my $ftp = Net::FTP->new( 'irgendeinurl', SSL_verify_mode => SSL_VERIFY_CLIENT_ONCE(), ); Ein Profiling mit NYTProf mittels perl -d:NYTProf a.pl erzeugt eine nytprof.out draus wird mit nytprofhtml ein Verzeichnis erzeugt in dem die index.html fein zeigt wo es hakt. Heraus kopierte Information: Code: (dl
)
1 Top 15 Subroutines Da sind Socket::getaddrinfo und Net::SSLeay::* die Fresser. Last edited: 2015-04-17 20:09:40 +0200 (CEST) |