Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 3f070fffbf27156852f88d0547d8fff0 > files > 126

perl-SOAP-Lite-0.712.0-2.noarch.rpm

#!/usr/bin/perl -w


# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --

use SOAP::Lite;

$s = SOAP::Lite
  -> uri('http://localhost/My/Parameters')
  -> proxy('http://localhost/soap')
;

use Benchmark;

$s->echo; # ignore the first call

Benchmark::cmpthese(10, {
  'nocompress' => sub { $s->transport->options({}); $s->echo(1 x 100000) },
  'compress' => sub { $s->transport->options({compress_threshold => 10000}); $s->echo(1 x 100000) },
})