You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by "weizijun (Jira)" <ji...@apache.org> on 2021/06/23 07:34:00 UTC

[jira] [Updated] (LUCENE-10014) docvalue writeBlock gcd encode improve

     [ https://issues.apache.org/jira/browse/LUCENE-10014?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

weizijun updated LUCENE-10014:
------------------------------
    Status: Patch Available  (was: Open)

> docvalue writeBlock gcd encode improve
> --------------------------------------
>
>                 Key: LUCENE-10014
>                 URL: https://issues.apache.org/jira/browse/LUCENE-10014
>             Project: Lucene - Core
>          Issue Type: Improvement
>          Components: core/codecs
>            Reporter: weizijun
>            Priority: Major
>
> Lucene90DocValuesConsumer.writeBlock calculate bitsPerValue  as:
> {code:java}
> final int bitsPerValue = DirectWriter.unsignedBitsRequired(max - min);
> {code}
>  it can use gcd in this place as:
> {code:java}
> (max - min) / gcd
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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