summaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-05-12 14:02:28 +0200
committerTor Egge <Tor.Egge@online.no>2023-05-12 14:02:28 +0200
commit9eec0597af1c91c7f292a2ff9b512371f1fc108f (patch)
tree7f4fa2d42ffd78ec607af1f825adcc2dd6df7216 /streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
parentf2334d2df98f96eb66bf097a1c4bbc0f89ef4b3e (diff)
Add attribute access recorder for streaming search mode. Use it to
determine which attributes to populate during a streaming search.
Diffstat (limited to 'streamingvisitors/src/vespa/searchvisitor/indexenvironment.h')
-rw-r--r--streamingvisitors/src/vespa/searchvisitor/indexenvironment.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h b/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
index 88ea5a5ada8..f741af77e35 100644
--- a/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
+++ b/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
@@ -29,8 +29,6 @@ private:
std::vector<search::fef::FieldInfo> _fields;
StringInt32Map _fieldNames;
mutable FeatureMotivation _motivation;
- mutable std::set<vespalib::string> _rankAttributes;
- mutable std::set<vespalib::string> _dumpAttributes;
std::shared_ptr<const search::fef::IRankingAssetsRepo> _ranking_assets_repo;
public:
@@ -88,10 +86,6 @@ public:
void set_ranking_assets_repo(std::shared_ptr<const search::fef::IRankingAssetsRepo> ranking_assets_repo);
- const std::set<vespalib::string> & getHintedRankAttributes() const { return _rankAttributes; }
-
- const std::set<vespalib::string> & getHintedDumpAttributes() const { return _dumpAttributes; }
-
//TODO Wire in proper distribution key
uint32_t getDistributionKey() const override { return 0; }