You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Tomás Fernández Löbbe (JIRA)" <ji...@apache.org> on 2016/04/06 02:47:25 UTC

[jira] [Created] (LUCENE-7181) JapaneseTokenizer: Validate segmentation of User Dictionary entries on creation

Tomás Fernández Löbbe created LUCENE-7181:
---------------------------------------------

             Summary: JapaneseTokenizer: Validate segmentation of User Dictionary entries on creation
                 Key: LUCENE-7181
                 URL: https://issues.apache.org/jira/browse/LUCENE-7181
             Project: Lucene - Core
          Issue Type: Improvement
            Reporter: Tomás Fernández Löbbe


>From the [conversation on the dev list|http://mail-archives.apache.org/mod_mbox/lucene-dev/201604.mbox/%3CCAMJgJxR8gLnXi7WXkN3KFfxHu=PoSeVxXARbbg+cHCE1TZhhpQ@mail.gmail.com%3E]

The user dictionary in the {{JapaneseTokenizer}} allows users to customize how a stream is broken into tokens using a specific set of rules provided like: 
AABBBCC -> AA BBB CC

It does not allow users to change any of the token characters like:

(1) AABBBCC -> DD BBB CC   (this will just tokenize to "AA", "BBB", "CC", seems to only care about positions) 
It also doesn't let a character be part of more than one token, like:

(2) AABBBCC -> AAB BBB BCC (this will throw an AIOOBE)

..or make the output token bigger than the input text: 

(3) AA -> AAA (Also AIOOBE)

Currently there is no validation for those cases, case 1 doesn't fail but provide unexpected tokens. Cases 2 and 3 fail when the input text is analyzed. We should add validation to the {{UserDictionary}} creation.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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