summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/address_space_components.h
blob: 3d409ece973668c126811902de75dc6ab0fa3f1d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/stllike/string.h>
#include <vespa/vespalib/util/address_space.h>

namespace search {

/**
 * A set of components in an attribute vector that use address space.
 */
class AddressSpaceComponents {
public:
    static vespalib::AddressSpace default_enum_store_usage();
    static vespalib::AddressSpace default_multi_value_usage();
    static const vespalib::string enum_store;
    static const vespalib::string multi_value;
    static const vespalib::string tensor_store;
    static const vespalib::string shared_string_repo;
    static const vespalib::string hnsw_node_store;
    static const vespalib::string hnsw_link_store;
};

}