Re: StopFilterFactory with french_stop.txt

2016-05-05 Thread Daniel Bigham
For the time being I seem to be able to do this by using a custom TokenFilterFactory class as follows. If there is a better approach, or if this approach seems flawed, let me know. Thanks. package com.wolfram.textsearch; import java.io.IOException; import java.io.Reader; import

StopFilterFactory with french_stop.txt

2016-05-05 Thread Daniel Bigham
I'd like to use CustomAnalyzer to create an analyzer that is much like the FrenchAnalyzer. In doing that, I'm using StopFilterFactory. But I'm unsure how to point it to use "french_stop.txt". ie. What FrenchAnalyzer is using here: public final class FrenchAnalyzer extends

Re:Re: Any Detailed Explanation Available for TermsHashPerField class internals ?

2016-05-05 Thread shanghaihyj
Thank you. I read and got to understand ByteBlockPool. A chain of slices can sit on a byte block, with these slices linked by forward addresses. This suggests that multiple logical chains of slices can co-exist on the same byte block, with their slices interleaving on the byte block. In

Re: Question on Lucene Behavior in 4.9 vs 5.4.1

2016-05-05 Thread Jeremy Glesner
Thanks Christoph. I can upgrade, but would prefer not to go through the trouble only to find that my issue was still there. I looked in JIRA and I don't see any other tickets logged for changes to Fuzzy matching. There may be other changes that would affect my situation. But would be curious

Merging Facets Index present in 2 directories in 3rd directory

2016-05-05 Thread Ankit.Murarka
Hi, I am using DirectoryTaxonomyWriter to create facet Indexes. There is 2 process. Process A creates facet indexes in Folder A. Process B creates facet indexes in Folder B. I have a 3rd Process (Merger process), which needs to merge Folder A Facet and Folder B Facet in Folder C. This

Re: Question on Lucene Behavior in 4.9 vs 5.4.1

2016-05-05 Thread Christoph Läubrich
I recently have had a problem with strange search results in lucene 5.5, upgrading to 6.0 fixed that, so is upgrading to the latest version an option for you? Am 04.05.2016 23:08, schrieb Jeremy Glesner: Thanks to Adrien for responding. I performed the explain on indexSearcher in Lucene