Most of the websites you find on the web today are mostly built on the concept of request-response. User clicks a link / button on the webpage, browser sends a request to the server, server sends back the relevant content....
Category: Perl / Mojolicious
Mojolicious Minion – A High Performance Job Queue
Minion is a third party plugin for Mojolicious Web Framework which allows you to process time consuming tasks in the background. They are high performance job queue for Perl programming language and is not limited to just Mojolicious web framework....
Mojolicious (Part 4): Database Management
We have reached the last part of Mojolicious series. We have so far built a new project with Mojolicious full_app, created a home page for our website, then we looked at layouts & templates, and finally ended our last article...
Mojolicious (Part 3): Session Management
In the previous article we made our home page beautiful by adding a HTML template using the concept of Templates and Layouts. Let us now see how we can restrict access to our website to only registered users. We will...
Mojolicious (Part 2): Layouts and Templates
Now that we have our Home Page built in the previous article, let's extend our project from it. Our home page looks quite dull and boring, so let's add some color to it. This can be achieved by Layouts and...
Mojolicious (Part 1): Build Full App
In the previous article we looked at how to install Mojolicious, build a hello world web app, test it and deploy the same in the instance. In the course of next few articles, we will look at building a mini...
Mojolicious: “Hello World” with Mojolicious::Lite
Mojolicious is a full fledged Perl web development framework developed by the original author of Catalyst framework. You can start building websites with it very quickly and easily. It's a very powerful web development tool with tons of features which...