: which seems to override incrementToken() ( guess as I don't know java )
: however using lucene.net 3.0.3, I can override
Lucene.Net is a completely seperate project from Lucene, with it's own
APIs, release cycles, and user community.
Your best bet at getting help from people who are familiar
com]
Sent: Monday, February 25, 2013 6:05 PM
To: java-user@lucene.apache.org
Subject: RE: Searching for keywords .net,c#,...
I did search google on TokenFilter lucene example and found this link
http://sujitpal.blogspot.com/2011/07/lucene-token-concatenating-tokenfilte
r_30.html
which seems to overr
new StopFilter(true, result,
StopAnalyzer.ENGLISH_STOP_WORDS_SET);
return result;
}
}
-Original Message-
From: Naresh [mailto:nnar...@gmail.com]
Sent: Monday, February 25, 2013 1:18 AM
To: java-user@lucene.apache.org
Subject: Re: Searching for keywords .net,c#,.
Hi,
You can write your own token-filter to split on some characters (comma, |
etc.,) and then build an analyzer using the WhiteSpaceTokenizer,
LowerCaseFilter and your CustomTokenFilter.
See
http://stackoverflow.com/questions/9015348/lucene-custom-analyzer/9015658#9015658
On Mon, Feb 25, 2013 at
Hello all
I am a lucene novice and trying to setup lucene in a .net app using lucene.net
for searching through documents
So far it has been fantastic, however given that the users expectations are for
"google"-like search,
running into issues searching for .net and c#
Initially tried the Stand