views:

1994

answers:

3

How do you implement the search capabilities of Lucene.net in asp.net? If possible, please include links or example code.

+6  A: 

I think mojoPortal (ASP.NET CMS) uses Lucene.NET.

Another nice example, cuyahoga, makes also use of NHibernate.

You can take a look at their source...

extra codeproject link

bob
+4  A: 

Be sure to check out LINQ to Lucene. It's not feature complete, but it does make getting started a lot easier: http://www.codeplex.com/linqtolucene

friism
+8  A: 

I documented how I use Lucene.NET in my ASP.NET application BugTracker.NET here:

http://www.ifdefined.com/blog/post/2009/02/Full-Text-Search-in-ASPNET-using-LuceneNET.aspx

Corey Trager