发布时间:2015-01-09 16:18:59
#!/usr/bin/perl -wuse strict;use LWP::Simple;use Time::HiRes qw(gettimeofday tv_interval);my $url = 'http://127.0.0.1/';foreach my $index (1 .. 10000){ my $t_01 = [gettimeofday]; my $content = get $url; my $t_02 .........【阅读全文】
发布时间:2015-01-09 15:54:15
#!/usr/bin/perl -wuse strict;use Getopt::Long;my $file_name = "";my $verbose = 1;GetOptions( "file_name=s" => \$file_name, "verbose" => \$verbose,);print $file_name;print "\n";print $verbose;print "\n";.........【阅读全文】
发布时间:2015-01-04 13:51:12
http://www.mathworks.com/matlabcentral/fileexchange/23393--another--json-parser......【阅读全文】