I'm running Dancer and found it slow.

This is the example code from Dancer::Introduction:

#!/usr/bin/perl
# make this script a webapp
use Dancer;
# declare routes/actions
get '/' => sub {
    "Hello World";
};
get '/hello/:name' => sub {
    "Hello ".param('name');
};
# run the webserver
Dancer->dance;

It takes my browser 10 seconds to get the response( using firebug in firefox ).

And Dancer message:

[20734]  core @0.000228> request: GET / from 192.168.1.101 in /usr/lib/perl5/site_perl/5.8.8/Dancer/Handler.pm l. 57
[20734]  core @0.000809> [hit #44]trying to match `/' against /^\/$/ in /usr/lib/perl5/site_perl/5.8.8/Dancer/Route.pm l. 84
[20734]  core @0.000953> [hit #44]  --> got 1 in /usr/lib/perl5/site_perl/5.8.8/Dancer/Route.pm l. 101
[20734]  core @0.001645> [hit #44]response: 200 in /usr/lib/perl5/site_perl/5.8.8/Dancer/Handler.pm l. 175
[20734]  core @0.000135> request: GET /favicon.ico from 192.168.1.101 in /usr/lib/perl5/site_perl/5.8.8/Dancer/Handler.pm l. 57
[20734]  core @0.000873> [hit #45]response: 200 in /usr/lib/perl5/site_perl/5.8.8/Dancer/Handler.pm l. 175

Why is Dancer so slow? Did I miss something?

link|improve this question

What's your command-line argument to start the application server? – Richard Simões Dec 26 '11 at 3:52
perl dancer.pl #dancer.pl stored above code – everbox Dec 26 '11 at 4:03
1  
I'm guessing you have a config file since core messages don't show up by default. Care to share any remaining details? – Richard Simões Dec 26 '11 at 4:27
I dont change anything after dancer -a testapp. config.yml: appname: "testapp" layout: "main" charset: "UTF-8" template: "simple" environments/development.yml: logger: "console" log: "core" warnings: 1 show_errors: 1 auto_reload: 0 – everbox Dec 26 '11 at 4:35
feedback

2 Answers

up vote 8 down vote accepted

Is the computer connected to internet? I got the same problem when testing from a computer not connected to internet; fixed it by deleting

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>;

from main.tt

link|improve this answer
thank you, that's the problem – everbox Dec 27 '11 at 1:18
feedback

As you can see from the debugging log, it took Dancer 0.6ms to serve the request. The problem is somewhere else in the stack. A frequent culprit is reverse DNS — the webserver tries to reverse-lookup the remote IP address for access logging purposes, and if your DNS is misconfigured, that can take quite a while (sometimes 30 or 60 seconds) before it fails.

link|improve this answer
How to disable DNS reverse-lookup ? Thanks. – everbox Dec 26 '11 at 6:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.