Skip to content

Commit

Permalink
Add missing read tiers (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrusu authored Oct 12, 2024
1 parent 19360e4 commit 5c75138
Showing 1 changed file with 6 additions and 0 deletions.
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

0 comments on commit 5c75138

Please sign in to comment.