Puh.... only place that might hold up something is hooks that act prior to the final routing and might operator on a limited resource (get something from a db, a webservice, ... which blocks).
If it's always reproducable I'd fire up the debugger or use NYTprof against it, that might give some clues, where your code is actually heading ;-) +rl -- Roland Lammel QuikIT - IT Lösungen - flexibel und schnell Web: http://www.quikit.at Phone: +43 (676) 9737845 Email: [email protected] "Enjoy your job, make lots of money, work within the law. Choose any two." On Thu, Sep 25, 2014 at 10:41 AM, Ben van Staveren <[email protected] > wrote: > Hi folks, > > Quick question because I'm at the stage where I'm bashing my head into the > wall over this; I have a relatively large application that has about 30 > different routes set up; However, when looking at the debug log, I see > things like this: > > [Thu Sep 25 08:37:59 2014] [debug] GET "/foo/ > 53decba49c81a5330a010000.html". > [Thu Sep 25 08:38:04 2014] [debug] Routing to a callback. > [Thu Sep 25 08:38:04 2014] [debug] Routing to controller > "My::App::Controller::Foo::View" and action "view". > > The callback is the first item in the route list, and is set up as a > bridge (does some authentication checks). The actual work inside the bridge > is done within a few ms, and the view action also only takes a few ms to > complete. > > So what boggles me is where that 5(!) second delay comes from between the > initial 'GET' debug entry, and the first routing action. > > Any ideas? I'm using Mojolicious 5.44 at the moment. > > -- > You received this message because you are subscribed to the Google Groups > "Mojolicious" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/mojolicious. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Mojolicious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/mojolicious. For more options, visit https://groups.google.com/d/optout.
