> On Wed, Jan 2, 2013 at 5:16 PM, Rick Bragg <[email protected]> wrote: >> hooks and routes are called once in the application flow. Do I really have >> to >> program around this taking into consideration the number of times the before >> hook >> is called on each page? > > HTTP is stateless. The client can make as many requests as it likes > and your Dancer app will see them as separate requests. > > The 'before' hook fires for every request. If you want to limit a > hook to particular routes, you have to write that logic yourself in > the hook subroutine or else wrap the route handlers instead of using a > before hook. > > David > _______________________________________________ > dancer-users mailing list > [email protected] > http://lists.preshweb.co.uk/mailman/listinfo/dancer-users > >
Makes total sense. Thanks again! _______________________________________________ dancer-users mailing list [email protected] http://lists.preshweb.co.uk/mailman/listinfo/dancer-users
