vote up 3 vote down star

What is the best full text search alternative to ms sql? (which works with ms sql)

I'm looking for something similar to Lucene and Lucene.NET but without the .NET and Java requirements. I would also like to find a solution that is usable in commercial applications.

flag

7 Answers

vote up 2 vote down check

Take a look at CLucene - It's a well maintained C++ port of java Lucene. It's currently licenced under LGPL and we use it in our commercial application.

Performance is incredible, however you do have to get your head around some of the strange API conventions.

link|flag
vote up 1 vote down

Sphinx is one of the best solutions. It's written in C++ and has amazing performance.

link|flag
but it's not for ms sql – Brian R. Bondy Sep 14 '08 at 18:28
Lucene is not for MSSQL either, you can 2 choices: index documents prior passing it to DB or let indexing engine go through DB itself. Sphinx can't crawl MSSQL automatically as far as I know, but it has best indexing performance. – aku Sep 14 '08 at 22:07
vote up 0 vote down

I second Sphinx, but Lucene is also not so bad despite the Java. :) If you are not dealing with too much data spread out etc., then also look into MySQL's FULLTEXT. We are using it to search across a 20 GB database.

link|flag
vote up 1 vote down

DT Search is hands down the best search tool I have used. They have a number of solutions available. Their Engine will run on Native Win32, Linux or .NET. It will index pretty much every kind of document you might have (Excel, PDF, Word, etc.) I did some benchmarks comparisons a while ago and it was the easiest to use and had the best performance.

link|flag
vote up 1 vote down

One note of caution on Lucene.NET: it tends to lag behind Apache's Java Lucene (the "official" Lucene). Lucene.NET is a port of Java Lucene, and the community around Java Lucene is larger. For obvious reasons, this can sometimes be a problem.

link|flag
vote up 1 vote down

Solr is based on Lucene, but accessible via HTTP, so it can be used from any platform.

link|flag
vote up 1 vote down

I prefer Xapian - pure C++ Search Engine Library.

link|flag

Your Answer

Get an OpenID
or

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