Best search engine to use in a ebay-like system (.NET) [closed]
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this questionI´m developing a ebay-like system in .NET/C# ... Is Lucene a good option to a system like that? Or maybe a simpler 开发者_开发技巧solution ? The performance is the most important thing to that...
EDIT I´ll use a Full-Text Sql Search (Is it the best option?)
Any ideas, suggestions?
Paul
I would definitely go for Lucene.Net as you mention yourself. My experience is, that Lucene.Net has excellent performance, compared to proprietary search servers that I have had experience with.
Alternatively you can run the Java version Lucene or Solr on you server and query it.
It you're just searching on SQL data, I would just use a full-text SQL query. Lucene, Google search and Microsoft indexing service are great options for searching on files, should you need to go that route.
I don't know a thing about Lucene but how about custom Google search?
精彩评论