2017-03-04 03:09:43 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2017-03-04 03:09:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "monitoring/statistics.h"
|
2017-03-24 03:20:04 +01:00
|
|
|
#include "rocksdb/persistent_cache.h"
|
2017-03-04 03:09:43 +01:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-03-04 03:09:43 +01:00
|
|
|
|
|
|
|
// PersistentCacheOptions
|
|
|
|
//
|
|
|
|
// This describe the caching behavior for page cache
|
|
|
|
// This is used to pass the context for caching and the cache handle
|
|
|
|
struct PersistentCacheOptions {
|
|
|
|
PersistentCacheOptions() {}
|
|
|
|
explicit PersistentCacheOptions(
|
|
|
|
const std::shared_ptr<PersistentCache>& _persistent_cache,
|
|
|
|
const std::string _key_prefix, Statistics* const _statistics)
|
|
|
|
: persistent_cache(_persistent_cache),
|
|
|
|
key_prefix(_key_prefix),
|
|
|
|
statistics(_statistics) {}
|
|
|
|
|
|
|
|
virtual ~PersistentCacheOptions() {}
|
|
|
|
|
|
|
|
std::shared_ptr<PersistentCache> persistent_cache;
|
|
|
|
std::string key_prefix;
|
|
|
|
Statistics* statistics = nullptr;
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|