On Mon, Jan 5, 2015 at 12:05 AM, Martin R <[email protected]> wrote:
> Hello, I would like to ask about few basic aspects related to mojolicious > applications: > > 1.) Skimming through the documentation I noticed that you highly encourage > to first start with "Lite" app than move to full app which itself involve > moving from morbi to hypnotoad for serious app. My question is how much > work costs this move to full app from lite app ? Isn't it better to start > with full app ? > This mostly depends on the application you are developing. If you have experience with Mojolicious *and* know the application is going to be a big one with a lots of controllers doing a full app makes sense. Converting is pretty easy, it's more or less just rewriting of syntax and placing into modules. To get known to Mojolicious I would recommend doing theLite app, just as the docs say. > 2.) Mojolicious has its own built in server called "hypnotoad" how > different is this server in comparison with nginx ? What are the advantages > and disadvantages ? > You cannot compare apples and oranges. Nginx is a generic web and reverse proxy server being used on millions of servers. Hypnotoad is a production ready web application server. Many people use hypnotoad behing a reverse proxy server (I always do and am using nginx as reverse proxy). > 3.) Does mojolicious has its own utilities to work with MySQL DB ? I > didn't find this in doc. > If it's not in the docs it's not there. Use DBI or any ORM on top of it, if you need async support you can use Mojo::mysql > 4.)I've heard that perl 6 production ready implementation is coming, how > it is going to influence mojolicious ? > Really, I heard it's going to come out on Christmas.Mojolicious will be ported to Perl6 at some point, that has not been decided yet. MoarVM and the JVM port of Perl6 look very promising though. > Thanks ;) > > -- > You received this message because you are subscribed to the Google Groups > "Mojolicious" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/mojolicious. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Mojolicious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/mojolicious. For more options, visit https://groups.google.com/d/optout.
