Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing read tiers #164

Merged
merged 1 commit into from
Oct 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions options_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ const (
ReadAllTier = ReadTier(0)
// BlockCacheTier reads data in memtable or block cache.
BlockCacheTier = ReadTier(1)
// PersistedTier reads data in memtable or block cache persisted data.
// When WAL is disabled, this option will skip data in memtable.
// Note that this ReadTier currently only supports Get and MultiGet and does not support iterators.
PersistedTier = ReadTier(2)
// MemtableTier reads data in memtable. Used for memtable-only iterators.
MemtableTier = ReadTier(3)
)

// ReadOptions represent all of the available options when reading from a
Expand Down
Loading