[ 
https://issues.apache.org/jira/browse/LUCENE-2400?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12860795#action_12860795
 ] 

Steven Rowe edited comment on LUCENE-2400 at 4/26/10 12:07 AM:
---------------------------------------------------------------

New patch.  Removed FillerAttribute.  Switched inputWindow from 
LinkedList<State> to LinkedList<InputWindowToken>, where InputWindowToken holds 
an AttributeSource, references to Attributes of interest, and a boolean 
isFiller.  InputWindowToken instances are recycled when shifting the input 
window.  These changes result in faster performance:

JAVA:
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode)

OS:
cygwin
WinVistaService Pack 2
Service Pack 26060022202561

||Max Shingle 
Size||Unigrams?||Unpatched||Patched||StandardAnalyzer||Improvement||
|2|no|3.26s|3.05s|2.19s|24.4%|
|2|yes|3.37s|3.20s|2.19s|16.8%|
|4|no|4.21s|3.84s|2.19s|22.4%|
|4|yes|4.46s|4.11s|2.19s|18.2%|


      was (Author: steve_rowe):
    New patch.  Removed FillerAttribute.  Switched inputWindow from 
LinkedList<State> to LinkedList<InputWindowToken>, where InputWindowToken holds 
an AttributeState, references to Attributes of interest, and a boolean 
isFiller.  InputWindowToken instances are recycled when shifting the input 
window.  These changes result in faster performance:

JAVA:
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode)

OS:
cygwin
WinVistaService Pack 2
Service Pack 26060022202561

||Max Shingle 
Size||Unigrams?||Unpatched||Patched||StandardAnalyzer||Improvement||
|2|no|3.26s|3.05s|2.19s|24.4%|
|2|yes|3.37s|3.20s|2.19s|16.8%|
|4|no|4.21s|3.84s|2.19s|22.4%|
|4|yes|4.46s|4.11s|2.19s|18.2%|

  
> ShingleFilter: don't output all-filler shingles/unigrams; also, convert from 
> TermAttribute to CharTermAttribute
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-2400
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2400
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/analyzers
>    Affects Versions: 3.0.1
>            Reporter: Steven Rowe
>            Priority: Minor
>         Attachments: LUCENE-2400.patch, LUCENE-2400.patch, LUCENE-2400.patch, 
> LUCENE-2400.patch
>
>
> When the input token stream to ShingleFilter has position increments greater 
> than one, filler tokens are inserted for each position for which there is no 
> token in the input token stream.  As a result, unigrams (if configured) and 
> shingles can be filler-only.  Filler-only output tokens make no sense - these 
> should be removed.
> Also, because TermAttribute has been deprecated in favor of 
> CharTermAttribute, the patch will also convert TermAttribute usages to 
> CharTermAttribute in ShingleFilter.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to