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

I´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

share|improve this question
A little more info might be helpful. Are you trying to do full-text SQL queries, or are you querying files on the file system or are you querying some other kind of data source? – Steve Danner Mar 5 '10 at 13:47
I´ll use a Full-Text Sql Search... – Paul Mar 5 '10 at 14:12

3 Answers

up vote 3 down vote accepted

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.

share|improve this answer

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.

share|improve this answer
In a Ebay-like app, what do you think is the best save itens/search approach? – Paul Mar 5 '10 at 14:44

I don't know a thing about Lucene but how about custom Google search?

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.