views:

494

answers:

2

I am currently using whoosh to dev a website, and I'll need to choose something more powerful once the website will be in production.

If anyone of you used both of these engines, which one gave you the most meaningful results one the long road?

+1  A: 

Well both are equally fine. But I guess Solr might be better suitable for a more relevant search as it supports features like faceted navigation and flexible full text querying. A complete overview of these features is mentioned in the extensive reference guide on Solr1.4 http://www.lucidimagination.com/Downloads/LucidWorks-for-Solr

You say that "Well both are equally fine", but what makes you say that.
e-satis
+2  A: 

Solr is the best option. Its well documented and the community is huge. Almost a year ago I benchmarked Xapian vs Solr:

My dataset had +8000 emails:

Solr

  • index time: 3s
  • index size: 5.2mb

Xapian

  • index time: 30s
  • index size: 154mb

Another great reading about benchmarks between Xapian and Solr is this document: Cross-instance Search System - Search Engine Comparison

Rui Carneiro