I can imagine many ways of implemeting search features in an ASP.NET MVC application but since I can't find much documentation I was wondering if you have any common pattern, technology or common approach to implement search features in a ASP.NET MVC application (similar to stackoverflow). Some technologies that I have in mind are:
- SQL Server full-text search
- External search engine (like Search Server 2008)
- Lucene.NET
...but what is the best approach to integrate them with ASP.NET MVC?
Ideas?