Re: [Catalyst] Starman and Catalyst

2012-04-05 Thread Eden Cardim
> "Bill" == Bill Moseley writes: Bill> Anyone here using Starman in production?   Can you describe any Bill> special config needed, what you are using for serving static Bill> content, and anything else to be aware of? You might want --preload-app if you want to save memory. --

Re: [Catalyst] Starman and Catalyst

2012-04-05 Thread Seth Daniel
On Fri, Apr 06, 2012 at 09:43:57AM +0800, Bill Moseley wrote: > I really like the simplicity of Starman for running Catalyst apps. For > production we currently use Apache/mod_perl which seems pretty heave weight > for just decoding requests on a socket and passing to Catalyst. We run a > couple

[Catalyst] Starman and Catalyst

2012-04-05 Thread Bill Moseley
I really like the simplicity of Starman for running Catalyst apps. For production we currently use Apache/mod_perl which seems pretty heave weight for just decoding requests on a socket and passing to Catalyst. We run a couple million requests or so through each web server a day on a pool of 8-c

Re: [Catalyst] Datagrid with details view?

2012-04-05 Thread Hernan Lopes
Kenneth, you are using ->search which return multiple records, and you are using [% details.account_code %] on your code. Maybe you should: 1. [% details.0.account_code %] and ->all or 2. while ( $item = $results->next ) { ... } and you can always do $results = $c->model('ORANGES::AccountDetails'

[Catalyst] Datagrid with details view?

2012-04-05 Thread Kenneth S Mclane
I am trying to duplicate a .aspx website. I have succeeded in getting a page based on a db view. In the original site you can click on a row and a details view appears at the bottom of the page. I don't know if this is possible, but I have been trying to simply get a second page to come up with