Can you explain what you mean by an "MVC"? Just list a few examples.
Myself, I would say that Mason is one way of implementing the model-view separation.
(My suspicion is that you're talking about web development frameworks based on object-relational mappers like Class::DBI, in which case, I disagree strongly with your claim that they're the right way to develop "large" projects.
They may be quick, they may be fun, but scale, they do not.)
| [reply] |
MVC is an all around more rigidly structured way of handling the web, it tends to yield better code on the whole, while being easier to divvy out amonst a team. It is more so maintainable and scalable.
You have three fine divides, a model - interacts with the database (makes the data accessible in your language of choice), a controller which can access a model and holds all of your programming logic, and a view which simply reads from the context variable - catalyst's stash, rail's flash/other misc custom globals, etc.
- More than one medium can access the model, the interface to the db in perl, Class::DBI, DBIx::Class custom DBI modules etc, in our implementation, the models are recycled and I use the same modules when inserting data with web crawlers, that i do when users add the data themselves.
- The controller is often kind of like a server side http/rpc, and can be largely reused, http://foobar.com/1/2 will in most implementations dispatch to the function '1', the arg '2', in Catalyst you can form this 10900498084 different ways, you could in the path '1/2/3/4', send the function 1, the value 2, the function 3 the value 4, etc, these functions are written in the controller logic
- view is any of the many template languages available to what ever lang you pick. TT, embperl, etc these only deal with presentation logic.
The best Mason users, found on the mailing lists, will highlight these points in their methodologies, which largely mimic MVC now too. they often put their model functions in modules, isolated from the .mas files. A dhandler in mason is easily abstracted to be a controller, and the autohandler and seamless calling chain are the powerhouse of the language. If you start doing this too, and then you pick up a true MVC framework, you might come to view Mason as less developed -- I have.
Evan Carroll www.EvanCarroll.com
| [reply] |
| [reply] |
I think you meant frameworks like CGI::Application, Maple, Catalyst, etc. That's what I usually use. The parallel distinction in the java world is jsp vs. frameworks like Struts. I only use Mason occasionally, but was told that Amazon mainly use Mason, it then must be "good enough"? | [reply] |
| [reply] |
Amazon doesn't use Mason externally, they use it internally to "prototype." Many books have clairfied this.
So it shouldn't be too hard to name one of them, right?
I can't find this anywhere on the web. As of a few years ago the story was that Amazon was using Mason quite a bit, and had plans to use it even more...
A number of sites use Mason:
MasonPoweredSites
| [reply] |