You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by "David Smiley (Jira)" <ji...@apache.org> on 2019/09/17 20:57:00 UTC

[jira] [Resolved] (LUCENE-8921) IndexSearcher.termStatistics should not require TermStates but docFreq and totalTermFreq

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

David Smiley resolved LUCENE-8921.
----------------------------------
    Fix Version/s:     (was: master (9.0))
                   8.3
         Assignee: David Smiley
       Resolution: Fixed

> IndexSearcher.termStatistics should not require TermStates but docFreq and totalTermFreq
> ----------------------------------------------------------------------------------------
>
>                 Key: LUCENE-8921
>                 URL: https://issues.apache.org/jira/browse/LUCENE-8921
>             Project: Lucene - Core
>          Issue Type: Improvement
>          Components: core/search
>    Affects Versions: 8.1
>            Reporter: Bruno Roustant
>            Assignee: David Smiley
>            Priority: Major
>             Fix For: 8.3
>
>          Time Spent: 3h
>  Remaining Estimate: 0h
>
> IndexSearcher.termStatistics(Term term, TermStates context) is the way to create a TermStatistics. It requires a TermStates param although it only cares about the docFreq and totalTermFreq.
>  
> For customizations that what to create TermStatistics based on docFreq and totalTermFreq, but that do not have available TermStates, this method forces to create a TermStates instance (which is not very lightweight) only to pass two ints.
> termStatistics could be modified to the following signature:
> termStatistics(Term term, int docFreq, int totalTermFreq)
> Since it would change the API, it could be done in master for next major release.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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