quickwit-oss / tantivy-py

Python bindings for Tantivy
MIT License
245 stars 62 forks source link

Expose const score query #256

Closed alex-au-922 closed 2 months ago

alex-au-922 commented 2 months ago

Added ConstScoreQuery class with tests.

Expected usage:

@staticmethod
def const_score_query(query: Query, score: float) -> Query:
    pass

Query.const_score_query(BooleanQuery(...), 0.5)