You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Mark <st...@gmail.com> on 2011/05/12 02:05:31 UTC

K-Stemmer for Solr 3.1

It appears that the older version of the Lucid Works KStemmer is 
incompatible with Solr 3.1. Has anyone been able to get this to work? If 
not, what are you using as an alternative?

Thanks

Re: K-Stemmer for Solr 3.1

Posted by Mark <st...@gmail.com>.
Thanks. Ill have to create a Jira account to vote i guess.

We are already using KStemmer in 1.4.2 production and I would like to 
upgrade to 3.1. In the meantime, what is another stemmer I could use out 
of the box that would be have similar to KStemmer?

Thanks

On 5/28/11 10:02 AM, Steven A Rowe wrote:
> Hi Mark,
>
> Yonik Seeley indicated on LUCENE-152 that he is considering contributing Lucid's KStemmer version to Lucene:
>
> <https://issues.apache.org/jira/browse/LUCENE-152?focusedCommentId=13035647&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13035647>
>
> You can vote on the issue to communicate your interest.
>
> Steve
>
>> -----Original Message-----
>> From: Mark [mailto:static.void.dev@gmail.com]
>> Sent: Friday, May 27, 2011 7:31 PM
>> To: solr-user@lucene.apache.org
>> Subject: Re: K-Stemmer for Solr 3.1
>>
>> Where can one find the KStemmer source for 4.0?
>>
>> On 5/12/11 11:28 PM, Bernd Fehling wrote:
>>> I backported a Lucid KStemmer version from solr 4.0 which I found
>>> somewhere.
>>> Just changed from
>>> import org.apache.lucene.analysis.util.CharArraySet;  // solr4.0
>>> to
>>> import org.apache.lucene.analysis.CharArraySet;  // solr3.1
>>>
>>> Bernd
>>>
>>>
>>> Am 12.05.2011 16:32, schrieb Mark:
>>>> java.lang.AbstractMethodError:
>>>> org.apache.lucene.analysis.TokenStream.incrementToken()Z
>>>>
>>>> Would you mind explaining your modifications? Thanks
>>>>
>>>> On 5/11/11 11:14 PM, Bernd Fehling wrote:
>>>>> Am 12.05.2011 02:05, schrieb Mark:
>>>>>> It appears that the older version of the Lucid Works KStemmer is
>>>>>> incompatible with Solr 3.1. Has anyone been able to get this to
>>>>>> work? If not,
>>>>>> what are you using as an alternative?
>>>>>>
>>>>>> Thanks
>>>>> Lucid KStemmer works nice with Solr3.1 after some minor mods to
>>>>> KStemFilter.java and KStemFilterFactory.java.
>>>>> What problems do you have?
>>>>>
>>>>> Bernd

RE: K-Stemmer for Solr 3.1

Posted by Steven A Rowe <sa...@syr.edu>.
Hi Mark,

Yonik Seeley indicated on LUCENE-152 that he is considering contributing Lucid's KStemmer version to Lucene:

<https://issues.apache.org/jira/browse/LUCENE-152?focusedCommentId=13035647&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13035647>

You can vote on the issue to communicate your interest.

Steve

> -----Original Message-----
> From: Mark [mailto:static.void.dev@gmail.com]
> Sent: Friday, May 27, 2011 7:31 PM
> To: solr-user@lucene.apache.org
> Subject: Re: K-Stemmer for Solr 3.1
> 
> Where can one find the KStemmer source for 4.0?
> 
> On 5/12/11 11:28 PM, Bernd Fehling wrote:
> > I backported a Lucid KStemmer version from solr 4.0 which I found
> > somewhere.
> > Just changed from
> > import org.apache.lucene.analysis.util.CharArraySet;  // solr4.0
> > to
> > import org.apache.lucene.analysis.CharArraySet;  // solr3.1
> >
> > Bernd
> >
> >
> > Am 12.05.2011 16:32, schrieb Mark:
> >> java.lang.AbstractMethodError:
> >> org.apache.lucene.analysis.TokenStream.incrementToken()Z
> >>
> >> Would you mind explaining your modifications? Thanks
> >>
> >> On 5/11/11 11:14 PM, Bernd Fehling wrote:
> >>>
> >>> Am 12.05.2011 02:05, schrieb Mark:
> >>>> It appears that the older version of the Lucid Works KStemmer is
> >>>> incompatible with Solr 3.1. Has anyone been able to get this to
> >>>> work? If not,
> >>>> what are you using as an alternative?
> >>>>
> >>>> Thanks
> >>>
> >>> Lucid KStemmer works nice with Solr3.1 after some minor mods to
> >>> KStemFilter.java and KStemFilterFactory.java.
> >>> What problems do you have?
> >>>
> >>> Bernd

Re: K-Stemmer for Solr 3.1

Posted by Mark <st...@gmail.com>.
Where can one find the KStemmer source for 4.0?

On 5/12/11 11:28 PM, Bernd Fehling wrote:
> I backported a Lucid KStemmer version from solr 4.0 which I found 
> somewhere.
> Just changed from
> import org.apache.lucene.analysis.util.CharArraySet;  // solr4.0
> to
> import org.apache.lucene.analysis.CharArraySet;  // solr3.1
>
> Bernd
>
>
> Am 12.05.2011 16:32, schrieb Mark:
>> java.lang.AbstractMethodError: 
>> org.apache.lucene.analysis.TokenStream.incrementToken()Z
>>
>> Would you mind explaining your modifications? Thanks
>>
>> On 5/11/11 11:14 PM, Bernd Fehling wrote:
>>>
>>> Am 12.05.2011 02:05, schrieb Mark:
>>>> It appears that the older version of the Lucid Works KStemmer is 
>>>> incompatible with Solr 3.1. Has anyone been able to get this to 
>>>> work? If not,
>>>> what are you using as an alternative?
>>>>
>>>> Thanks
>>>
>>> Lucid KStemmer works nice with Solr3.1 after some minor mods to
>>> KStemFilter.java and KStemFilterFactory.java.
>>> What problems do you have?
>>>
>>> Bernd

Re: K-Stemmer for Solr 3.1

Posted by Bernd Fehling <be...@uni-bielefeld.de>.
I backported a Lucid KStemmer version from solr 4.0 which I found somewhere.
Just changed from
import org.apache.lucene.analysis.util.CharArraySet;  // solr4.0
to
import org.apache.lucene.analysis.CharArraySet;  // solr3.1

Bernd


Am 12.05.2011 16:32, schrieb Mark:
> java.lang.AbstractMethodError: org.apache.lucene.analysis.TokenStream.incrementToken()Z
>
> Would you mind explaining your modifications? Thanks
>
> On 5/11/11 11:14 PM, Bernd Fehling wrote:
>>
>> Am 12.05.2011 02:05, schrieb Mark:
>>> It appears that the older version of the Lucid Works KStemmer is incompatible with Solr 3.1. Has anyone been able to get this to work? If not,
>>> what are you using as an alternative?
>>>
>>> Thanks
>>
>> Lucid KStemmer works nice with Solr3.1 after some minor mods to
>> KStemFilter.java and KStemFilterFactory.java.
>> What problems do you have?
>>
>> Bernd

Re: K-Stemmer for Solr 3.1

Posted by Mark <st...@gmail.com>.
java.lang.AbstractMethodError: 
org.apache.lucene.analysis.TokenStream.incrementToken()Z

Would you mind explaining your modifications? Thanks

On 5/11/11 11:14 PM, Bernd Fehling wrote:
>
> Am 12.05.2011 02:05, schrieb Mark:
>> It appears that the older version of the Lucid Works KStemmer is 
>> incompatible with Solr 3.1. Has anyone been able to get this to work? 
>> If not,
>> what are you using as an alternative?
>>
>> Thanks
>
> Lucid KStemmer works nice with Solr3.1 after some minor mods to
> KStemFilter.java and KStemFilterFactory.java.
> What problems do you have?
>
> Bernd

Re: K-Stemmer for Solr 3.1

Posted by Bernd Fehling <be...@uni-bielefeld.de>.
Am 12.05.2011 02:05, schrieb Mark:
> It appears that the older version of the Lucid Works KStemmer is incompatible with Solr 3.1. Has anyone been able to get this to work? If not,
> what are you using as an alternative?
>
> Thanks

Lucid KStemmer works nice with Solr3.1 after some minor mods to
KStemFilter.java and KStemFilterFactory.java.
What problems do you have?

Bernd