Also in order for Spanish accents to be propperly stemmed... Something had
to be set to ISO Latin .... And a propper file had to be supplied to
solr....

I'm on a tablet and can't access the server to look....

On Feb 13, 2018 10:03 PM, "BlackIce" <blackice...@gmail.com> wrote:

Hi,

As stated it's a solr question... But I give you a hint (I don't have
access to the server right now)... Stemming is different for Spanish as for
English... If I remember correctly I had to use the hunspell tokenizer set
for Spanish.... Or something similar to that..

Sorry I can't be more precise.... But you've got now a better starting
point from what I had :)


Greetz

RRK


On Feb 13, 2018 7:45 PM, "Furkan KAMACI" <furkankam...@gmail.com> wrote:

Hi Rushi,

This is a Solr specific question but let me answer it. You can click
Analysis tab at your Solr dashboard and check Index and Query analyses
whether they are same or not. You will get a analyzer by analyzer debug
output at that panel.

Kind Regards,
Furkan KAMACI

On Tue, Feb 13, 2018 at 8:40 PM, Rushi <rushikeshmod...@gmail.com> wrote:

> Hello All,
> I integrated Nutch with solr ,everything seems to be fine till now, i am
> having a issue while searching some spanish accent characters,the search
> results are not same,with accent (Example :investigación) gives correct
> result  but without accent(example :investigacion) gives zero results.
> I tried using  various filters but still the issue is same.Here is my
> configuration on nutch and solr.
>
>
>  <fieldType name="text_es" class="solr.TextField"
> positionIncrementGap="100">
>     <analyzer type="index">
>         <tokenizer class="solr.StandardTokenizerFactory"/>
>         <filter class="solr.ICUFoldingFilterFactory" />
>         <filter class="solr.LowerCaseFilterFactory"/>
>         <filter class="solr.ASCIIFoldingFilterFactory"/>
>         <filter class="solr.EdgeNGramFilterFactory" minGramSize="3"
> maxGramSize="50" side="front"/>
>     </analyzer>
>     <analyzer type="query">
>         <tokenizer class="solr.StandardTokenizerFactory"/>
>         <filter class="solr.ICUFoldingFilterFactory" />
>         <filter class="solr.LowerCaseFilterFactory"/>
>         <filter class="solr.ASCIIFoldingFilterFactory"/>
>
>     </analyzer>
>   </fieldType>
>
> I would really appreciate if  anyone of you can  tell me what i am
missing?
> --
> Regards
> Rushikesh M
> .Net Developer
>

Reply via email to