X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=bin%2Firspy.pl;h=9f56724cafa9c14fa840c204ae8050edfdbb8d70;hp=0e86dfd8d36b2a734e2099e5ed171ebcd4054756;hb=109b7dd9a8b5e498b84c255a6e10cf7f96095e4d;hpb=b53c490927fa69c05d6c82c15a4f29d3ba1c1da5 diff --git a/bin/irspy.pl b/bin/irspy.pl index 0e86dfd..9f56724 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,10 +1,12 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.24 2007-02-27 15:01:40 mike Exp $ +# $Id: irspy.pl,v 1.26 2007-03-07 18:02:00 mike Exp $ # # Run like this: # YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick localhost:8018/IR-Explain---1 z3950.loc.gov:7090/Voyager bagel.indexdata.dk/gils bagel.indexdata.dk:210/marc # YAZ_LOG=irspy,irspy_test sudo ./setrlimit -n 3000 -u mike -- perl -I../lib irspy.pl -t Main -a localhost:8018/IR-Explain---1 +# YAZ_LOG=irspy,irspy_test perl -I../lib irspy.pl -t Main -a -n 100 localhost:8018/IR-Explain---1 +# # Available log-levels are as follows: # irspy -- high-level application logging # irspy_debug -- low-level debugging (not very interesting) @@ -26,19 +28,20 @@ use Getopt::Std; use ZOOM::IRSpy::Web; use Carp; -local $SIG{__DIE__} = sub { +$SIG{__DIE__} = sub { my($msg) = @_; confess($msg); }; my %opts; -if (!getopts('wt:af:', \%opts) || @ARGV < 1) { +if (!getopts('wt:af:n:', \%opts) || @ARGV < 1) { print STDERR "\ Usage $0: [options] [ ...] -w Use ZOOM::IRSpy::Web subclass -t Run the specified [default: all tests] -a Test all targets (slow!) -f Test targets found by the specified query + -n Number of connection to keep in active set "; exit 1; } @@ -47,7 +50,7 @@ my($dbname, @targets) = @ARGV; my $class = "ZOOM::IRSpy"; $class .= "::Web" if $opts{w}; -my $spy = $class->new($dbname, "admin", "fruitbat"); +my $spy = $class->new($dbname, "admin", "fruitbat", $opts{n}); if (@targets) { $spy->targets(@targets); } elsif ($opts{f}) {