[Catalyst] Scalable Catalyst

2009-04-17 Thread Peter Edwards
I was writing a blog entry http://dragonstaff.blogspot.com/ about the state of play of Catalyst and DBIC and came across this BBC iPlayer 2 uses Catalyst to handle 1000 hits per second: http://www.bbc.co.uk/blogs/bbcinternet/2008/12/iplayer_day_performance_tricks.html Cheers, Peter

Re: [Catalyst] Scalable Catalyst

2009-04-17 Thread Joe Cooper
My math brings it to about 100 hits per second, rather than 1000, unless I'm reading things wrong. 9 million page views a day = 9,000,000/(60*60*24) = 104.16/sec Still an impressive feat for dynamically generated pages. Peter Edwards wrote: I was writing a blog entry

Re: [Catalyst] Scalable Catalyst

2009-04-17 Thread Joe Cooper
Oops. Not paying attention: gets up to nearly one thousand concurrent requests per second. Joe Cooper wrote: My math brings it to about 100 hits per second, rather than 1000, unless I'm reading things wrong. 9 million page views a day = 9,000,000/(60*60*24) = 104.16/sec Still an impressive

Re: [Catalyst] Scalable Catalyst

2009-04-17 Thread Graeme Lawton
Yeah, I was reading this the other day. Does anyone know if they use DBIC? For each query we get we build an abstraction we call our blocklist. Makes me wonder if they are using their own in house db abstraction? Graeme 2009/4/17 Joe Cooper j...@virtualmin.com: Oops.  Not paying attention:

Re: [Catalyst] Jason Kohles' tutorial on ExtJs editable data grids and Catalyst

2009-04-17 Thread jagdish eashwar
Hi Ian, I am using ubuntu 8.04 and firefox 2 and no firebug because on my ubuntu installation firefox 3 hangs and I am unable to install a version of firebug that is compatible with firefox 2. In the absence of firebug, I looked for the javascript errors in the firefox error log and there were

Re: [Catalyst] Catalyst::Plugin::Session::State::Cookie and HttpOnly flag

2009-04-17 Thread Scott Thomson
On Thu, Apr 16, 2009 at 5:47 PM, Scott Thomson smoothho...@gmail.com wrote: On Tue, Apr 14, 2009 at 7:50 PM, Tomas Doran bobtf...@bobtfish.net wrote: On 14 Apr 2009, at 10:58, Scott Thomson wrote: Currently Catalyst::Plugin::Session::State::Cookie doesn't allow configuration of the HttpOnly

RE: [Catalyst] Jason Kohles' tutorial on ExtJs editable data grids and Catalyst

2009-04-17 Thread Scott Pham (scpham)
Comment out console.log and see if that fixes your problem. Please someone correct me if I'm wrong, but isn't that firebug only? From: jagdish eashwar [mailto:jagdish.eash...@gmail.com] Sent: Friday, April 17, 2009 12:20 AM To: The elegant MVC web framework Subject: Re: [Catalyst] Jason

Re: [Catalyst] Scalable Catalyst

2009-04-17 Thread Juan Miguel Paredes
On Sat, Apr 18, 2009 at 2:42 AM, Graeme Lawton glaw...@alola.org wrote: Yeah, I was reading this the other day. Does anyone know if they use DBIC? Apparently, yes... ...The team which produces the web side server components for BBC iPlayer is expanding. We use Catalyst, DBIx::Class and TT to

Re: [Catalyst] Jason Kohles' tutorial on ExtJs editable data gridsand Catalyst

2009-04-17 Thread Craig McLaughlin
Howdy, So for grins and giggles I ran through the demo and brute forced it until it worked (this doesn't imply anything other than I'm not a rocket scientist with this stuff and that I'm really good at making dumb mistakes). I am running the following: ubuntu 8.04, Catalyst 5.71001, ExtJS

[Catalyst] upon successful login, how do i get redirect users back to the page they wanted to access previously?

2009-04-17 Thread kakimoto
hi, everybody, Take this scenario: a user who has yet to login tries to access a path that is only for logged in users. Assume it is www.lginsurance.com.au/subcriptions/add. Hence, in my index.tt2, upon displaying a message indicating that the current user has yet to log in, I also

Re: [Catalyst] upon successful login, how do i get redirect users back to the page they wanted to access previously?

2009-04-17 Thread Devin Austin
here's one way to do it: http://dev.catalystframework.org/wiki/wikicookbook/nextpageredirect On Fri, Apr 17, 2009 at 7:34 PM, kakim...@tpg.com.au wrote: hi, everybody, Take this scenario: a user who has yet to login tries to access a path that is only for logged in users. Assume it is