So I've been working on my "play" site for a couple months now, and since it's incarnation, have wanted to use Solr for indexing things from the file system and the database. In front of me lay some seriously sweet options for doing such:
- DBIx::Class::Indexer::WebService::Solr - this allows you to have your database insertions *automatically* indexed/inserted into the Solr index. Perfect for adding documents into a Solr index that are also going into your database.
- Catalyst::Model::WebService::Solr - Search your Solr index via the webservice through a convenient Catalyst::Model class. $c->model('YourSolrModel')->search($terms) and away!






