| clear query|facets|time |
Search criteria: tokenfilterfactory.
Results from 1 to 10 from
94 (1.293s).
|
|
|
Loading phrases to help you refine your search...
|
|
Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
...Hello list, I saw a bug in a TokenFilter that only works, if there is a fresh instance created by the TokenFilterFactory and it seems as TokenFilters are reused some how for more than one...
|
|
... request. So, if your TokenFilterFactory has a Logging-Statement in its create()-method, you see that log only now and again - but not on every request. Is this a bug in Solr 4.0-BETA...
|
|
|
Author: Em,
2012-09-30, 13:37
|
|
|
Re: Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
.... This problem only occurs when I deploy those Filters to Solr and index or search for some documents (which does not always calls create() on the TokenFilterFactory). However I have to be able...
|
|
|
Author: Em,
2012-10-01, 18:54
|
|
|
Re: Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
...Ok. I might get what you are looking for. Extends SolrTestCase4J (see plenty samples in codebase). Obtain request via req(), obtain schema from it by getSchema(), then getAnalyzer() or getQu...
|
|
|
Author: Mikhail Khludnev,
2012-10-01, 19:24
|
|
|
Re: Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
...It's not clear what you want to achieve. I don't always create custom TokenStreams, but if I do I use Lucenes as a prototype to start from. On Mon, Oct 1, 2012 at 6:07 PM, Em wro...
|
|
|
Author: Mikhail Khludnev,
2012-10-01, 17:43
|
|
|
Re: Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
...Hi Mikhail, thanks for your feedback. If so, how can I write UnitTests which respect the Reuse strategy? What's the recommended way when creating custom Tokenizers and TokenFilte...
|
|
|
Author: Em,
2012-10-01, 14:07
|
|
|
Re: Lifecycle of a TokenFilter from TokenFilterFactory - Solr - [mail # user]
|
|
...Hello, Analyzers are reused. Analyzer is Tokenizer and several TokenFilters. Check the source org.apache.lucene.analysis.Analyzer, pay attention to reuseStrategy. Best regards &n...
|
|
|
Author: Mikhail Khludnev,
2012-10-01, 08:54
|
|
|
[SOLR-1719] stock TokenFilterFactory for flattening positions - Solr - [issue]
|
|
...://old.nabble.com/Tokenizer-question-to27099119.html
...it would probably be handy if there was a TokenFilterFactory provided out of the box that just set the positionIncrement of every token to "0" to deal with situations where people...
|
|
|
http://issues.apache.org/jira/browse/SOLR-1719
Author: Hoss Man,
2010-01-19, 21:28
|
|
|
[SOLR-1285] Add TokenFilterFactory for DelimitedPayloadTokenFilter - Solr - [issue]
|
|
...Add support for this TokenFilter, which will is a step in allowing Solr to use Payloads more natively....
|
|
|
http://issues.apache.org/jira/browse/SOLR-1285
Author: Grant Ingersoll,
2009-07-17, 16:12
|
|
|
AnalyzersTokenizersTokenFilters - Solr - [wiki]
|
|
....ClassicTokenizerFactory
solr.UAX29URLEmailTokenizerFactory
solr.PatternTokenizerFactory
solr.PathHierarchyTokenizerFactory
solr.ICUTokenizerFactory
TokenFilterFactories
solr.ClassicFilterFactory
solr...
|
|
... of optional TokenFilterFactories that are applied in the listed order. Factories that can create the tokenizers or token filters are used to prepare configuration for the tokenizer or filter and avoid...
|
[+ show more]
[- hide]
| ...Factory, or TokenFilterFactory may be specified using its full class name with package -- just make sure they are in Solr's classpath when you start your appserver. Classes in the org... |
| ...CustomFilter(input);
}
}
As of Solr 4.0 BaseTokenFilterFactory has been renamed to TokenFilterFactory and moved to the package org.apache.lucene.analysis.util.
When To use a CharFilter vs a TokenFilter
There are several... |
| ...;/fieldType>
Note: to use this tokenizer, see solr/contrib/analysis-extras/README.txt for instructions on which jars you need to add to your SOLR_HOME/lib
TokenFilterFactories
solr... |
|
|
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
Author: MarkBennett,
2013-04-28, 04:41
|
|
|
SolrPlugins - Solr - [wiki]
|
|
... may have (or may want to implement) you'll need to provide a TokenizerFactory and TokenFilterFactory which takes care of any initialization and configuration, and specify these Factories...
|
|
...="my.package.CustomTokenizerFactory"/>
<!-- this TokenFilterFactory has custom options -->
<filter class="my.package.CustomTokenFilter" optA="yes" optB="maybe" optC="42.5"/>
<!-- Solr has many...
|
[+ show more]
[- hide]
| ... to know about the ResourceLoader can implement ResourceLoaderAware. Valid ResourceLoaderAware include:
TokenFilterFactory
TokenizerFactory
FieldType
SolrCoreAware
Classes that need... |
|
|
http://wiki.apache.org/solr/SolrPlugins
Author: AlanWoodward,
2012-04-25, 15:16
|
|
|
|