Couchbase C++ SDK 1.0.1 (rev. 58d46d7)
Loading...
Searching...
No Matches
search_meta_data.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright 2020-Present Couchbase, Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#pragma once
19
22
23#include <cinttypes>
24#include <map>
25#include <memory>
26#include <optional>
27#include <vector>
28
29namespace couchbase
30{
31#ifndef COUCHBASE_CXX_CLIENT_DOXYGEN
32class internal_search_meta_data;
33#endif
34
42{
43public:
48 explicit search_meta_data(internal_search_meta_data internal);
51 auto operator=(search_meta_data&& other) noexcept -> search_meta_data&;
52
61 [[nodiscard]] auto client_context_id() const -> const std::string&;
72 [[nodiscard]] auto errors() const -> const std::map<std::string, std::string>&;
73
82 [[nodiscard]] auto metrics() const -> const search_metrics&;
83
84private:
85 std::unique_ptr<internal_search_meta_data> internal_;
86};
87
88} // namespace couchbase
Stores any non-rows results related to the execution of a particular N1QL search.
Definition search_meta_data.hxx:42
auto operator=(search_meta_data &&other) noexcept -> search_meta_data &
auto client_context_id() const -> const std::string &
Returns the client context identifier string set on the search request.
auto errors() const -> const std::map< std::string, std::string > &
Returns any warnings returned by the search engine.
search_meta_data(internal_search_meta_data internal)
search_meta_data(search_meta_data &&other) noexcept
auto metrics() const -> const search_metrics &
Returns the search_metrics as returned by the search engine if enabled.
Search Metrics contains the search result metrics containing counts and timings.
Definition search_metrics.hxx:33
Represents a single item from the result of collection::scan()
Definition allow_querying_search_index_options.hxx:28