Dezi is a search platform based on Swish3, Apache Lucy, OpenSearch and Plack. Written in Perl, Dezi is conceptually similar to the Lucene-based Solr project: a HTTP-based search platform capable of indexing multiple document formats (HTML, XML, PDF, DOC, XLS, etc) and returning faceted results in a variety of formats (XML, JSON).
See the Git source code repository for the code.
Join the mailing list.
Install Dezi from CPAN like any other CPAN module.
There are clients for Dezi available (so far) in Perl and PHP.
Submitted by dezi on Sun, 02/19/2012 - 21:26
Dezi now supports a Xapian backend via Search::OpenSearch::Engine::Xapian. You need only configure your Dezi server to use the Xapian backend like this in your dezi-config file:
{
engine_config => {
'type' => 'Xapian',
'index' => ['dezi-xapian.index'],
},
}
Submitted by karpet on Sat, 10/01/2011 - 22:14