Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

-edit-

The question do not says it all. :)

It may run on Unix and it will be used for email searching (Dovecot, Postfix and maildir).

Lucene is not a problem, im just analyzing some alternatives.

share|improve this question
Do you want to quantify why you don't like Lucene, what issues you have with it or what needs it doesn't meet for you? – Simucal Mar 2 '09 at 15:40
Your questions needs more content, if nothing else reiterate what the question is and why Lucene can't be used. – Chuck Conway Mar 2 '09 at 15:41
There is a good discussion on slashdot. – Gulzar Nazim Mar 2 '09 at 15:45
Platform, language etc would also help narrowing down the options. – jishi Mar 2 '09 at 15:47
So, to sum it up, the question really doesn't say it all. – EBGreen Mar 2 '09 at 15:50
show 4 more comments

8 Answers

would need to know what problems you're having with Lucene, but Xapian is worth a look.

share|improve this answer
Im not having any kind of problems, im just wondering what the alternatives were. – Rui Carneiro Mar 2 '09 at 16:19

For simple things native full-text search of your RDBMS.

share|improve this answer

Minion from Sun Labs is a very interesting alternative to Lucene and Xapian.

Among other interesting features, it supports search results clustering.

share|improve this answer

The ones I can come up with now is native DBMS-full-text-indexing (MSSQL, MySQL both has implementations for it) aswell as Sphinx http://www.sphinxsearch.com/about.html

The advantage with Sphinx is easier integration with MySQL and PostgreSQL, however Lucene is more feature-rich.

share|improve this answer

Some alternative indexers are mentioned here:

http://stackoverflow.com/questions/120965/which-search-technology-to-use-with-asp-net

share|improve this answer

I don't know if you consider Solr an alternative, since it's built on top of lucene.

But others are:

  • Sphinx
  • IndexTank
  • RDBM full-text indexes (MySql, Oracle, Postgre, etc.)
share|improve this answer

I'd suggest mg4j for its compression performance. Please see also the description of my own question: mg4j vs. apache lucene

share|improve this answer

There is now also Elastic Search. AFAIK Stackexchange has switched to it or is in the process of doing so. (correct me if I'm wrong)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.