Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: Performance testing using Parallel::ForkManager?

by Anonymous Monk
on Apr 24, 2010 at 16:04 UTC ( [id://836683]=note: print w/replies, xml ) Need Help??


in reply to Re: Performance testing using Parallel::ForkManager?
in thread Performance testing using Parallel::ForkManager?

Actually, this is not about web application testing. It is about client-server application which runs as windows application. As per my knowledge the JMeter only works for Web Application. Am i correct? -Isha
  • Comment on Re^2: Performance testing using Parallel::ForkManager?

Replies are listed 'Best First'.
Re^3: Performance testing using Parallel::ForkManager?
by BrowserUk (Patriarch) on Apr 25, 2010 at 00:34 UTC

    Using fork (even via Parallel::ForkManager) on Windows, where fork is emulated, doesn't make much sense.

    I use this for stress testing my local servers. By default it will run 20 clients, each will make 1000 (serial) connections and exchange 1000 conversations. Adapting it to your needs should be straight forward.

    #! perl -slw use strict; use threads; use IO::Socket; our $W //= 20; my @t = map{ async { for( 1 .. rand 1000 ) { my $s = new IO::Socket::INET( 'localhost:12345' ) or die "Failed to connect to server: $!"; for( 1 .. rand 1000 ) { print $s "Message $_"; scalar <$s>; } close $s; } }; } 1 .. $W; $_->join for @t;

    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://836683]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-24 09:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found