2019-04-16 20:32:03 +02:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
|
|
// 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).
|
|
|
|
|
|
|
|
#include "rocksdb/flush_block_policy.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2019-04-16 20:32:03 +02:00
|
|
|
|
|
|
|
// FlushBlockEveryKeyPolicy currently used only in tests.
|
|
|
|
|
|
|
|
class FlushBlockEveryKeyPolicy : public FlushBlockPolicy {
|
|
|
|
public:
|
|
|
|
bool Update(const Slice& /*key*/, const Slice& /*value*/) override {
|
|
|
|
if (!start_) {
|
|
|
|
start_ = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool start_ = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FlushBlockEveryKeyPolicyFactory : public FlushBlockPolicyFactory {
|
|
|
|
public:
|
|
|
|
explicit FlushBlockEveryKeyPolicyFactory() {}
|
|
|
|
|
2021-07-12 18:03:41 +02:00
|
|
|
static const char* kClassName() { return "FlushBlockEveryKeyPolicyFactory"; }
|
|
|
|
const char* Name() const override { return kClassName(); }
|
2019-04-16 20:32:03 +02:00
|
|
|
|
|
|
|
FlushBlockPolicy* NewFlushBlockPolicy(
|
|
|
|
const BlockBasedTableOptions& /*table_options*/,
|
|
|
|
const BlockBuilder& /*data_block_builder*/) const override {
|
|
|
|
return new FlushBlockEveryKeyPolicy;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|