aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/direct_posting_store_flow_stats_adapter.h
blob: 56ac5043148b5dfadefab708cf2b4483a14cd4c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "i_direct_posting_store.h"
#include <vespa/searchlib/queryeval/blueprint.h>
#include <vespa/searchlib/queryeval/flow_tuning.h>

namespace search::attribute {

/**
 * Adapter used when calculating FlowStats based on IDirectPostingStore::LookupResult per term.
 */
struct DirectPostingStoreFlowStatsAdapter {
    uint32_t docid_limit;
    DirectPostingStoreFlowStatsAdapter(uint32_t docid_limit_in) noexcept : docid_limit(docid_limit_in) {}
    double estimate(const IDirectPostingStore::LookupResult& term) const noexcept {
        return queryeval::Blueprint::abs_to_rel_est(term.posting_size, docid_limit);
    }
    double cost(const IDirectPostingStore::LookupResult& term) const noexcept {
        double rel_est = queryeval::Blueprint::abs_to_rel_est(term.posting_size, docid_limit);
        return queryeval::flow::btree_cost(rel_est);
    }
    double strict_cost(const IDirectPostingStore::LookupResult& term) const noexcept {
        double rel_est = queryeval::Blueprint::abs_to_rel_est(term.posting_size, docid_limit);
        return queryeval::flow::btree_strict_cost(rel_est);
    }
};

}