I want to make a Proximity Search with Lucene.Net. I saw this question where it looks like that was the answer for him, but no code was suplied. The Java documentation says to use the ~ character with
Hello I am currently working on implementing a spatial search feature for a website using c#, lucene.net and spatial.net
I am looking for a way to find the terms that matched in the document using waldcard search in Lucene. I used the explainer to try and find the terms but this failed. A portion of the relevant code is
I have the code for sorting results from Lucene.net, but I need this search resu开发者_开发知识库lt sorted in descending order:
This code tests indexing with Lucene.NET. for (int i = 0; i < 10; i++) { var stopwatch = Stopwatch.StartNew();
Hi If only insert operation occur on lucene index (no delete/update), is it true that docID is not changing ? and its also reliable
I\'m using Lucene.Net 2.9.2.I use StandardAnalyzer with customized stop words list that just including english stop words.My data includes folder path like\"questions\\text\\testing data\". It\'s ok w
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.
I have two websites which are required to access the same Lucene index using nHibernate search. Problem is th开发者_StackOverflowey are of course on different domains so I think they are breaking the
I created an app using lucene. The server winded up throwing out of memory errors because I was new\'in up an IndexSeacher for every search in the app. The garbage collector couldn\'t keep up.