Home
last modified time | relevance | path

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

/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.cc401 commit_cache_ = std::unique_ptr<std::atomic<CommitEntry64b>[]>( in Init()
581 *entry_64b = commit_cache_[static_cast<size_t>(indexed_seq)].load(std::memory_order_acquire); in GetCommitEntry()
590 CommitEntry64b evicted_entry_64b = commit_cache_[static_cast<size_t>(indexed_seq)].exchange( in AddCommitEntry()
599 auto& atomic_entry = commit_cache_[static_cast<size_t>(indexed_seq)]; in ExchangeCommitEntry()
Dwrite_prepared_txn_db.h747 std::unique_ptr<std::atomic<CommitEntry64b>[]> commit_cache_; variable