In this chapter, we are going to be creating an extremely simple web application to use for demonstration purposes in subsequent chapters. The goal here is to get a full, end-to-end application up and running.
The application we are going to develop will simply be a guestbook, so that anyone can come and post a message into the guestbook.
4.1 Setting Up the Database Service
Any good web application has a database. My database of choice has always been PostgreSQL (www.postgresql.org). There is a myth that PostgreSQL is slow. There was some truth to that—in ...