| clear query|facets|time |
Search criteria: KStemFilterFactory.
Results from 11 to 20 from
56 (0.845s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: custom TokenFilter - Solr - [mail # user]
|
|
...Think I figured it out, the tokens just needed the same position attribute. On Thu, Feb 9, 2012 at 10:38 PM, Jamie Johnson wrote:...
|
|
|
Author: Jamie Johnson,
2012-02-10, 03:47
|
|
|
Re: custom TokenFilter - Solr - [mail # user]
|
|
...Thanks Robert, worked perfect for the index side of the house. Now on the query side I have a similar Tokenizer, but it's not operating quite the way I want it to. The query toke...
|
|
|
Author: Jamie Johnson,
2012-02-10, 03:38
|
|
|
Re: custom TokenFilter - Solr - [mail # user]
|
|
...Again thanks. I'll take a stab at that are you aware of any resources/examples of how to do this? I figured I'd start with WhiteSpaceTokenizer but wasn't sure if there was a simp...
|
|
|
Author: Jamie Johnson,
2012-02-10, 01:54
|
|
|
FilterQuery and Ors - Solr - [mail # user]
|
|
...I'm looking for a way to do a filter query and Ors. I've done a bit of googling and found an open jira but nothing indicating this is possible. I'm looking to do something like the search...
|
|
|
Author: Jamie Johnson,
2011-06-08, 21:34
|
|
|
Re: Regression of JIRA 1826? - Solr - [mail # user]
|
|
...A little more information on this. I tinkered a bit with the schema and it appears to be related to WordDelimiterFilterFactory and splitOnCaseChange being true, or at least this setting...
|
|
|
Author: Jamie Johnson,
2012-07-06, 18:13
|
|
|
Re: Stemmer Question - Solr - [mail # user]
|
|
...? I wonder if we can make it aware of the preserveOriginal attribute on WordDelimterFilterFactory? On Fri, Mar 9, 2012 at 2:27 PM, Jamie Johnson wrote: ...
|
|
...Further digging leads me to believe this is not the case. The Synonym Filter supports this, but the Stemming Filter does not. Ahmet, Would you be willing to provide your filter as well...
|
|
|
Author: Jamie Johnson,
2012-03-09, 19:53
|
|
|
Error with custom search component which adds filter - Solr - [mail # user]
|
|
...I have a custom search component which does the following in process SolrQueryRequest req = rb.req; SolrParams params = req.getParams(); QueryWrapperFilter qwf = new...
|
|
... QueryWrapperFilter(rb.getQuery()); Filter filter = new TestFilter(qwf); ConstantScoreQuery fq = new ConstantScoreQuery(filter); rb.setQuery(fq); this essentially filters...
|
[+ show more]
[- hide]
| ... the result set using TestFilter which does this in getDocIdSet return new FilteredDocSet(startingFilter.getDocIdSet(readerCtx)); where FilteredDocSet always returns true from match. When a query... |
| ... is executed that returns 0 results an IllegalArgumentException is thrown from org.apache.lucene.search.FilteredDocIdSetIterator constructor to fix this in FilteredDocSet I added the following... |
|
|
Author: Jamie Johnson,
2011-07-23, 05:39
|
|
|
upgrading Solr - org.apache.lucene.search.Filter and acceptDocs - Solr - [mail # user]
|
|
...I'm trying to upgrade an application I have from an old snapshot of solr to the latest stable trunk and see that the constructor for Filter has changed, specifically there is another...
|
|
... parameter named acceptDocs, the API says the following acceptDocs - Bits that represent the allowable docs to match (typically deleted docs but possibly filtering other documents) but I'm not sure...
|
[+ show more]
[- hide]
| ... what specifically this means to my filter. How should this be used when trying to upgrade a filter? ... |
|
|
Author: Jamie Johnson,
2012-02-25, 20:16
|
|
|
Re: upgrading Solr - org.apache.lucene.search.Filter and acceptDocs - Solr - [mail # user]
|
|
...I am assuming you meant should not be returned right? I basically return a filtered doc id set and do the following return new FilteredDocIdSet(startingFilter...
|
|
|
Author: Jamie Johnson,
2012-02-25, 20:37
|
|
|
Re: Stemmer Question - Solr - [mail # user]
|
|
... which speaks of an attribute preserveOriginal="1" on solr.WordDelimiterFilterFactory. So it seems like I can get the functionality I am looking for by setting preserveOriginal, is that correct...
|
|
...Ok, so I'm digging through the code and I noticed in org.apache.lucene.analysis.synonym.SynonymFilter there are mentions of a keepOrig attribute. Doing some googling led me to http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters...
|
|
|
Author: Jamie Johnson,
2012-03-09, 19:27
|
|
|
|