Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which search technology to use with ASP.NET?

What's your preferred method of providing a search facility on a website? Currently I prefer to use Lucene.net over Indexing Service / SQL Server full-text search (as there's nothing to set up server-side), but what other ways are being used out there?

like image 976
Nick Avatar asked Sep 23 '08 13:09

Nick


1 Answers

We used both Lucene.net, Indexing Service and SQL Server full-text. For a project with large and heavy DB search functionality SQL search has an upper hand in terms of performance/resource hit. Otherwise Lucene is much better in all aspects.

like image 167
Ilya Kochetov Avatar answered Nov 16 '22 04:11

Ilya Kochetov