Home
last modified time | relevance | path

Searched refs:InsertOp (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/utilities/persistent_cache/
Dblock_cache_tier.h88 struct InsertOp { struct
89 explicit InsertOp(const bool signal) : signal_(signal) {} in InsertOp() argument
90 explicit InsertOp(std::string&& key, const std::string& data) in InsertOp() argument
92 ~InsertOp() {} in ~InsertOp() argument
94 InsertOp() = delete;
95 InsertOp(InsertOp&& /*rhs*/) = default;
96 InsertOp& operator=(InsertOp&& rhs) = default; argument
143 BoundedQueue<InsertOp> insert_ops_; // Ops waiting for insert
Dblock_cache_tier.cc122 InsertOp op(/*quit=*/true); in Close()
182 InsertOp(key.ToString(), std::move(std::string(data, size)))); in Insert()
192 InsertOp op(insert_ops_.Pop()); in InsertMain()