[Catalyst] stress testing catalyst apps

2010-03-22 Thread Fernan Aguero
Hi, we have an app working under apache/mod_perl (and behind a reverse proxy) that we would like to optimize. We're currently evaluating performance, checking memory usage, etc. For this we thought about using some stress testing package that would be flexible in allowing us to specify a number o

Re: [Catalyst] stress testing catalyst apps

2010-03-23 Thread Fernan Aguero
On Tue, Mar 23, 2010 at 8:35 AM, Will Hawes wrote: > On 22 March 2010 21:26, Fernan Aguero wrote: >> Hi, >> >> we have an app working under apache/mod_perl (and behind a reverse >> proxy) that we would like to optimize. We're currently evaluating >> p

[Catalyst] moving from Auth::Store::DBIC to Auth::Store::DBIx::Class

2010-04-01 Thread Fernan Aguero
Hi, after reading lots of warnings in our logs about Authentication::Store::DBIC being deprecated, I thought about devoting some time to move to its replacement, Authentication::Store::DBIx::Class, but upon starting to work on this I've also started to hit on some problems. So, my first question

Re: [Catalyst] Displaying template files without adding new controller actions

2010-10-12 Thread Fernan Aguero
On Tue, Oct 12, 2010 at 1:27 PM, Fernan Aguero wrote: > On Tue, Oct 12, 2010 at 12:47 PM, Anthony Gladdish > wrote: >> Thanks for your feedback Denny, Ben and Stuart – good food for thought! >> >> I think some sort of handling logic in Root’s default action to test

Re: [Catalyst] Displaying template files without adding new controller actions

2010-10-12 Thread Fernan Aguero
On Tue, Oct 12, 2010 at 12:47 PM, Anthony Gladdish wrote: > Thanks for your feedback Denny, Ben and Stuart – good food for thought! > > I think some sort of handling logic in Root’s default action to test for the > existence of template and error or 404 if it doesn’t – is the way forward. > > Many

Re: [Catalyst] [ANNOUNCE] Catalyst-Runtime-5.89002-TRIAL PSGI Catalyst - third development release

2011-03-02 Thread Fernan Aguero
On Wed, Mar 2, 2011 at 7:50 AM, Florian Ragwitz wrote: > > Hi > > It gives me great pleasure to announce the third development release of > the next major version of Catalyst. [...] > You shouldn't have to do _anything_ to upgrade > to the new release, other than ensure your application scripts

Re: [Catalyst] [ANNOUNCE] Catalyst-Runtime-5.89002-TRIAL PSGI Catalyst - third development release

2011-03-03 Thread Fernan Aguero
On Thu, Mar 3, 2011 at 12:26 PM, Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 wrote: > Fernan Aguero ✍: >> what plack/psgi is and/or why I should care > I hear that often, so here's the elevator pitch I'm usually telling to convey > the basic idea. [snipped] > While it has been possible to run

[Catalyst] building 'local' lib with dependencies for shipping

2011-04-25 Thread Fernan Aguero
Hi, I've been reading a number of threads in the list about the decline of PAR as an easy solution for packing a catalyst app. The recommended solution in many of these email exchanges is: "build a local lib with all dependencies". My question is: apart from a 'hit and miss' approach (or a 'put e

Re: [Catalyst] building 'local' lib with dependencies for shipping

2011-04-26 Thread Fernan Aguero
On Mon, Apr 25, 2011 at 10:32 AM, Miquel Ruiz wrote: > On 25/04/2011 15:03, Fernan Aguero wrote: >> >> My question is: apart from a 'hit and miss' approach (or a 'put >> everything and the kitchen sink') ... is there a smart way of building >> a l

Re: [Catalyst] building 'local' lib with dependencies for shipping

2011-04-26 Thread Fernan Aguero
On Tue, Apr 26, 2011 at 11:43 AM, Nicholas Wehr wrote: > a local::lib alternative is Shipwright; created by Best Practical the makers > of RT defect tracker. its worth checking out as it does exactly what you're > trying to do. Nicholas, thanks for your suggestion. I installed Shipwright and fol

Re: [Catalyst] building 'local' lib with dependencies for shipping

2011-04-27 Thread Fernan Aguero
On Tue, Apr 26, 2011 at 8:29 PM, Nicholas Wehr wrote: > Shipwright is not a silver bullet - it has issues of its own. For catalyst > projects I created a dependency finder that issues shipwright import > commands. on top of that, shipwright is not forgiving with regards to build > errors, for exam

Re: [Catalyst] building 'local' lib with dependencies for shipping

2011-04-27 Thread Fernan Aguero
On Wed, Apr 27, 2011 at 11:59 AM, Fernan Aguero wrote: > On Tue, Apr 26, 2011 at 8:29 PM, Nicholas Wehr > wrote: >> Shipwright is not a silver bullet - it has issues of its own. For catalyst >> projects I created a dependency finder that issues shipwright import >>

[Catalyst] live demos of catalyst apps

2011-04-28 Thread Fernan Aguero
Hi, I was just wondering about this the other day. How do people showcase their apps to other people? Powerpoint presentations with screenshots? Recorded screencasts? Live demo of an app over screen sharing (VNC, webmeeting, elluminated, etc)? The first two are kind of OK, but static. The third

[Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-14 Thread Fernan Aguero
Hi, I'm having this issue with my catalyst app where the session table is not fully qualified in the generated SQL statement: [error] Caught exception in engine "DBIx::Class::ResultSet::delete(): DBI Exception: DBD::Pg::st execute failed: ERROR: relation "sessions" does not exist [for Statement

Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-14 Thread Fernan Aguero
On Wed, Nov 14, 2012 at 11:36 AM, Alejandro Imass wrote: > On Wed, Nov 14, 2012 at 7:45 AM, Fernan Aguero wrote: > >> Hi, >> >> I'm having this issue with my catalyst app where the session table is >> not fully qualified in the generated SQL statement: >

Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-14 Thread Fernan Aguero
On Wed, Nov 14, 2012 at 3:09 PM, Francisco Obispo wrote: > Did you use the dbicdump script (or myapp_create.pl model) command to > create the schema files? > > I would suggest you look to see how the 'sessions' table was created and > use that as the name for the relation. > > regards > I did no

Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-14 Thread Fernan Aguero
On Wed, Nov 14, 2012 at 5:56 PM, Francisco Obispo wrote: > Use: > > $c->model('GUS::WebappSession') as the name. > And where would I put this? I'm not dealing myself with the session data. I'm relying and delegating all this to Session, Session::Store::DBIC, and Session::State::Cookie That's w

Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-15 Thread Fernan Aguero
On Wed, Nov 14, 2012 at 5:56 PM, Francisco Obispo wrote: > Use: > > $c->model('GUS::WebappSession') as the name. So, it was a good suggestion after all ... it didn't work at first, and I think this led me to (maybe) a possible fix This doesn't work: sub remove_sessions : Private { my ( $sel

Re: [Dbix-class] Re: [Catalyst] Session::Store::DBIC and session table (postgres)

2012-11-15 Thread Fernan Aguero
On Thu, Nov 15, 2012 at 10:38 AM, Peter Rabbitson wrote: > On Thu, Nov 15, 2012 at 10:31:21AM -0300, Fernan Aguero wrote: > > So, apparently the problem is calling delete() right on the resultset > > object. For some reason that eludes me, DBIC is not fully qualifying the > &g

Re: [Catalyst] OT: Better TT pager?

2008-12-23 Thread Fernan Aguero
On Tue, Dec 23, 2008 at 9:34 AM, Jesse Sheidlower wrote: > > Some time ago, I developed or stole a TT pager that I now use > in all of my Cat apps. It looks like this, though occasionally > with minor CSS tweaks: [snipped code] > However, a frustration is that when I have excessively large > res

Re: [Catalyst] website member urls

2009-04-29 Thread Fernan Aguero
On Wed, Apr 29, 2009 at 5:23 PM, Charles wrote: > I'd like someone w/ better catalyst-fu to recommend how I could implement > urls for members a la myspace and youtube ( ie >  http://websiteurl.com/ ) . > There's got to be a better way that creating a seperate controller for each > user. sub memb

Re: [Catalyst] Re: OT: Better TT pager?

2009-06-21 Thread Fernan Aguero
On Sun, Jun 21, 2009 at 1:37 AM, wrote: > > Hi, there, Oliver and everyone:) > >  Thanks for your posting:) >  Referring to > http://www.mail-archive.com/catalyst@lists.scsys.co.uk/msg05232.html, I > adopted the code given into my template and it looks really good but the > hyperlink doesn't have

[Catalyst] how to do persistent session data (aka shopping cart) in catalyst?

2018-04-26 Thread Fernan Aguero
Hello, what is the current recommended way of developing a persistent shopping-cart-style functionality in a catalyst app? We would like to be able to support the following: i) store session data in the server for logged in users ii) keep session data across sessions, and across browsers (e.g. co

Re: [Catalyst] how to do persistent session data (aka shopping cart) in catalyst?

2018-04-26 Thread Fernan Aguero
has cart data and then log in, then merge >previous stored cart with the new cart (business rules apply here). > > It wasn't difficult to implement using the already available catalyst > plugins and, if needed, JSON serialization. > > Good luck! > > > 2018-04