| clear query|facets|time |
Search criteria: KStemFilterFactory.
Results from 1 to 10 from
56 (3.65s).
|
|
|
Loading phrases to help you refine your search...
|
|
ReversedWildcardFilterFactory and PorterStemFilterFactory - Solr - [mail # user]
|
|
...I'd like to use both the ReversedWildcardFilterFactory and PorterStemFilterFactory on a text field that I have, I'd like to avoid stemming the reversed fields and would also like to avoid...
|
|
... reversing the stemmed fields. My original thought was to have the ReversedWildcardFilterFactory higher in the chain, but what would this do with the stemmer? Would it attempt o stem the reversed...
|
|
|
Author: Jamie Johnson,
2012-02-03, 23:50
|
|
|
ReversedWildcardFilterFactory Question - Solr - [mail # user]
|
|
...I'm trying to determine when it is appropriate to use the solr.ReversedWildcardFilterFactory, specifically if I have a field content of type text (from default schema) which I want...
|
|
|
Author: Jamie Johnson,
2012-01-18, 14:19
|
|
|
WildcardFilter.java Equivalent in 4.1 - Solr - [mail # user]
|
|
...I'm looking a the ManifoldCFSecurityFilter ( http://manifoldcfinaction.googlecode.com/svn/trunk/edition_1/security_example/src/org/apache/manifoldcf/examples/ManifoldCFSecurityFilter...
|
|
....java)andthey use a WildcardFilter, but I don't see an equivalent in Solr/Lucene 4.x. How can a WildcardFilter be constructed in the current baseline? ...
|
|
|
Author: Jamie Johnson,
2013-02-06, 22:17
|
|
|
Re: Solr 4.2 Cloud Replication Replica has higher version than Master? - Solr - [mail # user]
|
|
....DistributedUpdateProcessor.setupRequest(DistributedUpdateProcessor.java:228) at org.apache.solr.update.processor.DistributedUpdateProcessor.processAdd(DistributedUpdateProcessor.java:339) at org.apache.solr.update.processor.LogUpdateProcessor.processAdd(LogUpdateProcessorFactory...
|
|
....RequestHandlerBase.handleRequest(RequestHandlerBase.java:135) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1797) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:637) at org.apache.solr...
|
[+ show more]
[- hide]
| ....servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:343) On Tue, Apr 2, 2013 at 5:41 PM, Jamie Johnson wrote: ... |
|
|
Author: Jamie Johnson,
2013-04-02, 21:43
|
|
|
Re: Minimum word length for stemming - Solr - [mail # user]
|
|
...Thanks for confirming my suspicions, the custom TokenLengthMarkerFilterFactory sounds like the best approach for doing this. On Thu, Jan 31, 2013 at 5:12 PM, Jan Høydahl wrote: ...
|
|
|
Author: Jamie Johnson,
2013-02-01, 00:33
|
|
|
Re: Solr 4.2 Cloud Replication Replica has higher version than Master? - Solr - [mail # user]
|
|
...AdminHandler.handleRequestBody(CoreAdminHandler.java:186) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:135) at org.apache.solr.servlet.SolrDispatchFilter.handleAdminRequest(SolrDispatchFilter...
|
|
....java:591) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:192) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:141...
|
[+ show more]
[- hide]
| ...) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1307) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:453) at org... |
|
|
Author: Jamie Johnson,
2013-04-04, 00:17
|
|
|
Re: Solr 4.2 Cloud Replication Replica has higher version than Master? - Solr - [mail # user]
|
|
....index.StandardDirectoryReader.open(StandardDirectoryReader.java:52) at org.apache.lucene.index.DirectoryReader.open(DirectoryReader.java:88) at org.apache.solr.core.StandardIndexReaderFactory.newReader(StandardIndexReaderFactory.java:34...
|
|
|
Author: Jamie Johnson,
2013-04-04, 02:01
|
|
|
[SOLR-3231] Add the ability to KStemmer to preserve the original token when stemming - Solr - [issue]
|
|
... is a copy of the org.apache.lucene.wordnet.SynonymTokenFilter. ...
|
|
|
http://issues.apache.org/jira/browse/SOLR-3231
Author: Jamie Johnson,
2013-03-08, 13:52
|
|
|
custom TokenFilter - Solr - [mail # user]
|
|
...). I am currently have implemented a custom TokenFilter to do this, is this appropriate? In cases where I am indexing things slowly (i.e. 1 at a time) this works fine, but when I send 10...
|
|
... or is there another more appropriate way to do this? Are TokenFilters reused? Would it be more appropriate to convert the stream to 1 token space separated then run that through a WhiteSpaceTokenizer? Any...
|
[+ show more]
[- hide]
| ... guidance on this would be greatly appreciated. class CustomFilter extends TokenFilter { private final CharTermAttribute termAtt addAttribute(CharTermAttribute.class); private final Position... |
| ...IncrementAttribute posAtt addAttribute(PositionIncrementAttribute.class); protected CustomFilter(TokenStream input) { super(input); } Iterator replacement; @Override public boolean increment... |
|
|
Author: Jamie Johnson,
2012-02-09, 23:30
|
|
|
Re: custom TokenFilter - Solr - [mail # user]
|
|
...Thanks Robert, I'll take a look there. Does it sound like I'm on the right the right track with what I'm implementing, in other words is a TokenFilter appropriate or is there something...
|
|
|
Author: Jamie Johnson,
2012-02-10, 01:28
|
|
|
|