[ 
https://issues.apache.org/jira/browse/SOLR-1320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erik Hatcher updated SOLR-1320:
-------------------------------

    Description: 
To see the problem first hand, add to schema.xml:

{code:xml}
<fieldType name="cap" class="solr.TextField" positionIncrementGap="100">
  <analyzer>
    <tokenizer class="solr.StandardTokenizerFactory"/>
    <filter class="solr.CapitalizationFilterFactory"
        minWordLength="2"/> 
  </analyzer>
 </fieldType>
{code}

Then in analysis.jsp, analyze "a or and".  All terms get capitalized.

This has to do with the length calculation being wrong in 
CapitalizationFilter#next.

  was:
To see the problem first hand, add to schema.xml:

    <fieldType name="cap" class="solr.TextField" positionIncrementGap="100">
<analyzer>
    <tokenizer class="solr.StandardTokenizerFactory"/>
    <filter class="solr.CapitalizationFilterFactory"
        minWordLength="2"/>
</analyzer>
    </fieldType>

Then in analysis.jsp, analyze "a or and".  All terms get capitalized.

This has to do with the length calculation being wrong in 
CapitalizationFilter#next.


> CapitalizationFilterFactory's minWordLength not working properly
> ----------------------------------------------------------------
>
>                 Key: SOLR-1320
>                 URL: https://issues.apache.org/jira/browse/SOLR-1320
>             Project: Solr
>          Issue Type: Bug
>          Components: Analysis
>    Affects Versions: 1.4
>            Reporter: Erik Hatcher
>
> To see the problem first hand, add to schema.xml:
> {code:xml}
> <fieldType name="cap" class="solr.TextField" positionIncrementGap="100">
>   <analyzer>
>     <tokenizer class="solr.StandardTokenizerFactory"/>
>     <filter class="solr.CapitalizationFilterFactory"
>         minWordLength="2"/> 
>   </analyzer>
>  </fieldType>
> {code}
> Then in analysis.jsp, analyze "a or and".  All terms get capitalized.
> This has to do with the length calculation being wrong in 
> CapitalizationFilter#next.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to