Re: An example for creating SynonymMap Object?

2018-10-15 Thread baris.kazar
essage- >> From:baris.ka...@oracle.com >> Sent: Monday 15th October 2018 23:03 >> To: java-user@lucene.apache.org >> Subject: Re: An example for creating SynonymMap Object? >> >> Thanks Markus. >> >> i am trying to see whether i need to add abc-

RE: An example for creating SynonymMap Object?

2018-10-15 Thread Markus Jelsma
.ka...@oracle.com > Sent: Monday 15th October 2018 23:03 > To: java-user@lucene.apache.org > Subject: Re: An example for creating SynonymMap Object? > > Thanks Markus. > > i am trying to see whether i need to add abc-> 123 and also 123-> abc > via builder.add. > > Best

Re: An example for creating SynonymMap Object?

2018-10-15 Thread baris . kazar
ser@lucene.apache.org Subject: An example for creating SynonymMap Object? Hi,-  is there any example on Lucene domain for creating SynonymMap Object? Best regards - To unsubscribe, e-mail: java-user-unsubscr...@lucene.a

RE: An example for creating SynonymMap Object?

2018-10-15 Thread Markus Jelsma
/analysis/common/src/java/org/apache/lucene/analysis/synonym/SynonymMap.java -Original message- > From:baris.ka...@oracle.com > Sent: Monday 15th October 2018 20:52 > To: java-user@lucene.apache.org > Subject: An example for creating SynonymMap Object? > > Hi,- &

An example for creating SynonymMap Object?

2018-10-15 Thread baris . kazar
Hi,-  is there any example on Lucene domain for creating SynonymMap Object? Best regards - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org

Re: SynonymMap

2018-09-10 Thread baris . kazar
at 2:06 PM, Baris Kazar wrote: Hi,- how does SynonymMap deal with repeated values? Best regards - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-use

Re: SynonymMap

2018-09-10 Thread Michael McCandless
The SynonymMap.Builder constructor takes a dedup parameter to tell it what to do in that case (when input and output are identical across added rules). Mike McCandless http://blog.mikemccandless.com On Thu, Sep 6, 2018 at 2:06 PM, Baris Kazar wrote: > Hi,- > how does SynonymMap dea

SynonymMap

2018-09-06 Thread Baris Kazar
Hi,- how does SynonymMap deal with repeated values? Best regards - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org

Re: SynonymMap through filesystem

2014-03-03 Thread Michael McCandless
2014 at 9:01 AM, Geet Gangwar wrote: > Hi, is there a way I can search in file to match my synomyms, instead of > building a SynonymMap ? > > My synonym list is going to be very large and I don;t want to keep it in > memory. &g

SynonymMap through filesystem

2014-03-03 Thread Geet Gangwar
Hi, is there a way I can search in file to match my synomyms, instead of building a SynonymMap ? My synonym list is going to be very large and I don;t want to keep it in memory. Regards Geet

Re: Custom SynonymMap

2007-12-14 Thread Chris Hostetter
: Is there a way to add synonyms to the SynonymMap map? : The HashMap that holds all the words is not visible (private) so extending : it will not work. : : Has anyone added their own custom vocabulary? I assume your question is in regards tothe SynonymMap that is part of the memory index

Custom SynonymMap

2007-12-06 Thread java_user_
Is there a way to add synonyms to the SynonymMap map? The HashMap that holds all the words is not visible (private) so extending it will not work. Has anyone added their own custom vocabulary? -- View this message in context: http://www.nabble.com/Custom-SynonymMap-tf4958585.html#a14201041

Re: Custom SynonymMap

2007-11-26 Thread java_user_
Were you able to find the post about a custom SynonymMap? Antonius Ng-2 wrote: > > Hi all, > > I'd like to add more words into SynonymMap for my application, but the > HashMap that holds all the words is not visible (private). > > Is there any other Class t

Re: Custom SynonymMap

2007-08-17 Thread Erick Erickson
Try searching the mail archives for SynonymMap, as I know this was discussed a while ago but don't remember the specifics. Erick On 8/17/07, Antonius Ng <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'd like to add more words into SynonymMap for my application, but

Custom SynonymMap

2007-08-17 Thread Antonius Ng
Hi all, I'd like to add more words into SynonymMap for my application, but the HashMap that holds all the words is not visible (private). Is there any other Class that I can use to implement SynonymAnalyzer? I am using Lucene version 2.2.0 Antonius Ng