I have a Lucene index which populates from a database. I store/index some fields and then add a FullText field in which I index the contents of all the other fields, ...
Is there a way to itterate through all of the terms held against a particular document in a Lucene.NET index?
Basically I want to be able to retrieve a Document from the ...
I am started working on resume retrieval(document) component based on lucene.net engine. It works great, and it fetches the document and score it based on the
My indexer indexes the title and the body of a post, but I'd like the words contained in the title of the post to carry more weight, and thus float to ...
We use Lucene.NET to implement a full text search on a clients website. The search itself works already but we now want to implement a modification.
Currently all terms get appended a ...
How could I get offsets for the tokens that has to be searched in Lucene.net?I am using FastVector Highlighter for highlighting a text?
Note:I have already got the offsets of all the ...