aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/address_space_components.h
blob: 6d28e02cfd08052e9130eb745e4bf4b57d9ffbfc (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
// Copyright Vespa.ai. 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 raw_store;
    static const vespalib::string tensor_store;
    static const vespalib::string shared_string_repo;
    static const vespalib::string hnsw_levels_store;
    static const vespalib::string hnsw_links_store;
    static const vespalib::string hnsw_nodeid_mapping;
};

}