Make load and performance testing a fun sport.
- Run a sprint from around the world
- Rush your API and website to scale it out
- Condition your site around the clock
Login to blitz.io and in the blitz bar type: --api-key
Now cpan Blitz
In your Perl
use Blitz;
my $blitz = Blitz->new();
Sprint
$blitz->sprint({
url => 'www.mycoolapp.com',
region => 'california',
callback => \&sprint_sink($ok, $err)
});
Rush
$blitz->rush({
url => 'www.mycoolapp.com',
region => 'california',
pattern => [
{
start => 1,
end => 100,
duration => 60,
}],
callback => \&rush_sink($ok, $err)
});