This is a bit of a followup to my previous post on Capistrano with Git and Passenger. I decided to use Ferret via the acts_as_ferret (AAF) plugin. Ferret is a full-text search inspired by Apache’s Lucene but written in Ruby.
Basically Ferret and Lucene keep a full-text index outside of the database that allows it to [...]
Archives for the Month of June, 2008
Capistrano and Ferret DRB
Thursday, 19 June 2008
Capistrano Deploy with Git and Passenger
Tuesday, 17 June 2008
One of the great things about Rails and its community is that they are very lazy. Lazy in the good way of not wanting to do boring, repetitive, error prone things manually. They metaprogram and they automate. A great example of this is Capistrano. Capistrano allows you to deploy Rails applications with ease. The normal [...]
Package Grails DBMigrations in your WAR File
Tuesday, 10 June 2008
The Grails DBMigrate Plugin is a handy way to give you control over the generation of your database if you don’t want Grails to auto-munge your schema. It works fine in development, but when you create a WAR for deployment on another machine the Migrations are not packaged in the WAR so the database can’t [...]