views:

53

answers:

1

I'm building a simple site that allows users to post text content and I want to add it to a search index as it gets posted, so my site search is up to date. From what I can tell Lucene.NET is a good full text search framework. I've found very few examples of how to use it though. Can anyone post some good references for learning about Lucene?

+1  A: 

Some links:

The key point is that any Java material for Lucene is great for Lucene.net.

I should note though, that from your description of requirements, Solr might be a better fit.

HTH

Moleski