've been using it for a couple of projects at work, as well as some things of my own, for about a month or two. Overall it's a neat MVC implementation, but I've found that if you want to step outside the catalyst box, you can run into some problems.

For example, I like to use the in-built apache/mod-perl authz and authen handlers, but catalyst has its own way of handling authz/en (probably because it is not tied to being run under apache - fair enough, I suppose). It took me a while to figure out how to let mod_perl auth handlers take care of user authentication without catalyst getting in the way.

Also if you are using the catalyst-provided CDBI model kit, you'd better make sure all tables in your database have a primary key defined. I had to bypass the Catalyst::M::CDBI abstraction and use Class::DBI directly for a couple of tables that had no such key.

Overall though it has speeded up development for some projects that might otherwise have taken a lot longer - I was able to put together a new application that ties together three disparate data sources spread over two servers, in a little over three days, including requirements gathering, initial design, test creation, and coding. It's not complete, but I doubt I'd have experienced that sort of development speed had I not been using catalyst.


In reply to Re: Catalyst? by moot
in thread How mature is Catalyst? by water

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.