Leeks and Leaks
Leeks and Leaks

Reputation: 1256

What are the fastest full-text search algorithms/APIs (open source or commercial)?

Are there any silver bullets out there for searching medium sized amounts of text data (hundreds of gigabytes)? Don't really care if it's commercial or open source. I should add that I need it to be C++ or C based.

Upvotes: 5

Views: 4868

Answers (3)

user1502505
user1502505

Reputation: 884

Solr could also be an option. This is also a Lucene based engine.

http://lucene.apache.org/solr/

Upvotes: 0

anon
anon

Reputation:

There's also xapian.

Upvotes: 1

user257111
user257111

Reputation:

Apache Lucene is a commonly used indexing engine, not sure if it qualifies as a silver bullet or not. I've seen this combined with Carrot2 for clustering and search of the index.

Upvotes: 3

Related Questions