You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Jun Ohtani (Commented) (JIRA)" <ji...@apache.org> on 2012/02/20 07:59:34 UTC

[jira] [Commented] (SOLR-2909) Add support for ResourceLoaderAware tokenizerFactories in synonym filter factories

    [ https://issues.apache.org/jira/browse/SOLR-2909?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13211698#comment-13211698 ] 

Jun Ohtani commented on SOLR-2909:
----------------------------------

A problem seems to happen when using TokenizerFactory of Kuromoji.
KuromojiTokenizerFactory load userDictionaryPath and mode in inform().

                
> Add support for ResourceLoaderAware tokenizerFactories in synonym filter factories
> ----------------------------------------------------------------------------------
>
>                 Key: SOLR-2909
>                 URL: https://issues.apache.org/jira/browse/SOLR-2909
>             Project: Solr
>          Issue Type: Improvement
>          Components: Schema and Analysis
>    Affects Versions: 3.4, 4.0
>            Reporter: Tom Klonikowski
>            Priority: Minor
>
> The optional custom tokenizerFactory in SlowSynonymFilterFactory and FSTSynonymFilterFactory might require the ResourceLoader information. Thus inform(ResourceLoader) should be called if the specified tokenizerFactory is an instance of ResourceLoaderAware.
> {noformat}
> private static TokenizerFactory loadTokenizerFactory(ResourceLoader loader, String cname, Map<String, String> args) {
>   TokenizerFactory tokFactory = (TokenizerFactory) loader.newInstance(cname);
>   tokFactory.init(args);
>   if (tokFactory instanceof ResourceLoaderAware) {
>     ((ResourceLoaderAware) tokFactory).inform(loader);
>   }
>   return tokFactory;
> }
> {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org