This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.idoox.util.RuntimeWrappedException: unknown/expired instance ID called: ws-ext004.us-ec.adtech.com:2011.06.16 01:46:38 GMT:C1AC1321FAE621E0:9C05 | |
======= Server stack trace ======= | |
org.idoox.util.RuntimeWrappedException: unknown/expired instance ID called: ws-ext004.us-ec.adtech.com:2011.06.16 01:46:38 GMT:C1AC1321FAE621E0:9C05 | |
at com.idoox.wasp.server.adaptor.RPCInstanceSelector.init(RPCInstanceSelector.java:97) | |
at com.systinet.wasp.server.adaptor.JavaInvoker.beginInvoke(JavaInvoker.java:342) | |
at com.idoox.wasp.server.adaptor.JavaAdaptorImpl.beginInvoke(JavaAdaptorImpl.java:63) | |
at com.idoox.wasp.server.AdaptorTemplate.javaInvocation(AdaptorTemplate.java:511) | |
at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java:391) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use AnyEvent; | |
use AnyEvent::Gearman::Client; | |
use Devel::Cycle; | |
use Data::Dumper; | |
use Devel::Events::Handler::ObjectTracker; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use AnyEvent; | |
use AnyEvent::Gearman::Client; | |
my $count = shift || 1000; | |
my $client = AnyEvent::Gearman::Client->new(job_servers => ['127.0.0.1:7003']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Danga::Socket::AnyEvent; | |
use Gearman::Client::Async; | |
my $count = shift || 1000; | |
my $client = Gearman::Client::Async->new(job_servers => ['127.0.0.1:7003']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Danga::Socket::AnyEvent; | |
use Gearman::Client::Async; | |
my $count = shift || 1000; | |
my $client = Gearman::Client::Async->new(job_servers => ['127.0.0.1:7003']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Gearman::Worker; | |
my $worker = Gearman::Worker->new; | |
$worker->job_servers('127.0.0.1:7003'); | |
$worker->register_function(test => sub { | |
return 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use AnyEvent; | |
use AnyEvent::Gearman::Client; | |
my $count = shift || 1000; | |
my $client = AnyEvent::Gearman::Client->new(job_servers => ['127.0.0.1:7003']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Danga::Socket; | |
use Gearman::Client::Async; | |
my $count = shift || 1000; | |
my $client = Gearman::Client::Async->new(job_servers => ['127.0.0.1:7003']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use feature ':5.10'; | |
use Time::HiRes qw(time); | |
my $iterations = 1000000; |
NewerOlder