| clear query|facets|time |
Search criteria: stopfilterfactory.
Results from 51 to 60 from
108 (0.504s).
|
|
|
Loading phrases to help you refine your search...
|
|
SolrStopwordsCarrot2LexicalDataFactory.java - Solr - [source code]
|
|
...LexicalDataFactory carrot2LexicalDataFactory = new DefaultLexicalDataFactory();
/**
* Obtains stop words for a field from the associated
* {@link StopFilterFactory}, if any.
*/
private Collection get...
|
|
...Factories = ((TokenizerChain) fieldAnalyzer)
.getTokenFilterFactories();
for (TokenFilterFactory factory : filterFactories) {
if (factory instanceof StopFilterFactory...
|
[+ show more]
[- hide]
| ...) {
// StopFilterFactory holds the stop words in a CharArraySet
solrStopWords.put(fieldName,
((StopFilterFactory) factory... |
|
|
|
|
|
Re: Highlighting stopwords - Solr - [mail # user]
|
|
... confusing for people who don't know how search engines work to also highlight the term "solr". So my first test was to have a field with StopFilterFactory and search on that field, while using...
|
|
... another field without StopFilterFactory to highlight on. This didn't do the trick. So thinking about it some more, I think some terms don't need to be highlighted (e.g. "the") and some need...
|
|
|
Author: O. Klein,
2012-01-24, 00:31
|
|
|
Re: Need "OR" in DisMax Query - Solr - [mail # user]
|
|
...David, If your schema includes fields with analyzers that use the StopFilterFactory and the dismax QueryHandler is set-up to search within those fields, then you are correct. On 10...
|
|
|
Author: Christian Zambrano,
2009-10-05, 19:02
|
|
|
Re: copyField: String vs Text Field - Solr - [mail # user]
|
|
..."stemmed and stopped" is short for using a stemmer and removing stopwords. Specifically, StopFilterFactory and EnglishPorterFilterFactory are in the analysis chain. wunder On 8/27/08 10...
|
|
|
Author: Walter Underwood,
2008-08-28, 15:19
|
|
|
Re: Does Solr Have? - Solr - [mail # user]
|
|
...dooh, should check all my email first! Correct. The StopFilterFactory is initialized at startup, any changes to the file won't take effect 'till solr restarts. but you can write...
|
|
... a custom FilterFactory based on StopFilterFactory that lets you change it dynamically. Most likely this would also require writing a custom RequestHandler to manipulate it. note - changing...
|
|
|
Author: Ryan McKinley,
2007-10-04, 13:20
|
|
|
filters effect on search results - Solr - [mail # user]
|
|
...Hi, when i query for "elegant" in solr i get results for "elegance" too. *I used these filters for index analyze* WhitespaceTokenizerFactory StopFilterFactory Word...
|
|
...TokenizerFactory SynonymFilterFactory StopFilterFactory WordDelimiterFilterFactory LowerCaseFilterFactory EnglishPorterFilterFactory RemoveDuplicatesTokenFilterFactory I want to know which filter affecting my...
|
|
|
Author: Romi,
2011-06-29, 09:56
|
|
|
Highlighting to include stop words - Solr - [mail # user]
|
|
...I have a text field, using stopwords... Index and query analysers setup as follows: SynonymFilterFactory StopFilterFactory WordDelimiterFilterFactory LowerCaseFilterFactory Snowball...
|
|
|
Author: Robert Brown,
2011-12-08, 09:31
|
|
|
Re: steps to improve search - Solr - [mail # user]
|
|
...most likely due to: EnglishPorterFilterFactory RemoveDuplicatesTokenFilterFactory StopFilterFactory you get those "fake" matches. try going into the admin, on the analysis section...
|
|
|
Author: Leonardo Menezes,
2010-07-02, 11:58
|
|
|
RE: preventing words from being indexed in spellcheck dictionary? - Solr - [mail # user]
|
|
... indexed in spellcheck dictionary? hello, should i apply the StopFilterFactory at index time or query time. right now - per the schema below - i am applying it at BOTH index time and query time...
|
|
|
Author: Dyer, James,
2012-03-27, 20:48
|
|
|
Re: Stop words - Solr - [mail # user]
|
|
... One solution can be using CommonGramsFilterFactory [1] instead of StopFilterFactory. See recent discussion at http://search-lucene.com/m/Zzxv925XeON1/Stopwords [1]http://wiki.apache...
|
|
|
Author: Ahmet Arslan,
2010-03-20, 09:02
|
|
|
|