trine-kv 0.1.0

Embedded LSM MVCC key-value database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
use std::{marker::PhantomData, sync::Arc};

use crate::{
    db::Db,
    error::Result,
    iterator::{Direction, Iter, LazyIter},
    lsm::{LsmPointReadSnapshot, LsmTree},
    options::{BucketOptions, WriteOptions},
    point_value::PointValue,
    snapshot::Snapshot,
    types::{CommitInfo, KeyRange, Sequence, Value},
    write_batch::WriteBatch,
};

pub(crate) const DEFAULT_BUCKET_NAME: &str = "default";

/// Name of an optional bucket returned through `Db::bucket`.
///
/// `Db` validates bucket names when creating them. The reserved default bucket
/// is reached through direct `Db` helpers or `Db::default_bucket`.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct BucketName(String);

impl BucketName {
    /// Creates a bucket name wrapper.
    #[must_use]
    pub fn new(name: impl Into<String>) -> Self {
        Self(name.into())
    }

    /// Returns the bucket name as a string slice.
    #[must_use]
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl From<&str> for BucketName {
    fn from(value: &str) -> Self {
        Self::new(value)
    }
}

impl From<String> for BucketName {
    fn from(value: String) -> Self {
        Self::new(value)
    }
}

/// Handle for one bucket.
///
/// A bucket has its own options, memtables, `SSTables`, filters, and compaction
/// state. Most applications can use the direct `Db` helpers instead, which
/// target the built-in default bucket.
///
/// Named buckets are created through [`Db::bucket_sync`], [`Db::bucket`],
/// [`Db::bucket_with_options_sync`], or [`Db::bucket_with_options`]. A bucket's
/// options are fixed when it is created; reopening it with different options is
/// rejected.
///
/// # Examples
///
/// ```rust
/// use trine_kv::Db;
///
/// # fn main() -> trine_kv::Result<()> {
/// let db = Db::open_sync(trine_kv::DbOptions::memory())?;
/// let users = db.bucket_sync("users")?;
///
/// users.put_sync(b"1", b"Ada")?;
/// assert_eq!(users.get_sync(b"1")?, Some(b"Ada".to_vec()));
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone)]
pub struct Bucket {
    db: Db,
    name: BucketName,
    options: BucketOptions,
    state: Arc<LsmTree>,
}

/// Point-read handle bound to one bucket and one snapshot.
///
/// Create one with `Bucket::reader` when a workload performs many point reads
/// under the same snapshot. The reader keeps a stable set of memtable and table
/// sources, so repeated `get` calls avoid reacquiring the bucket's version
/// lock.
#[derive(Debug)]
pub struct BucketReader<'snapshot> {
    db: Db,
    state: Arc<LsmTree>,
    read_snapshot: LsmPointReadSnapshot,
    read_sequence: Sequence,
    _read_pin: Option<Snapshot>,
    _snapshot: PhantomData<&'snapshot Snapshot>,
}

impl Bucket {
    pub(crate) fn new(
        db: Db,
        name: BucketName,
        options: BucketOptions,
        state: Arc<LsmTree>,
    ) -> Self {
        Self {
            db,
            name,
            options,
            state,
        }
    }

    /// Returns the bucket name used in WAL and manifest metadata.
    #[must_use]
    pub fn name(&self) -> &BucketName {
        &self.name
    }

    /// Returns the fixed options this bucket was opened with.
    #[must_use]
    pub fn options(&self) -> &BucketOptions {
        &self.options
    }

    /// Reads the newest committed value for `key` from this bucket.
    ///
    /// This is the bucket-scoped form of [`Db::get_sync`]. It searches only
    /// this bucket's memtables and table files and returns owned value bytes.
    ///
    /// # Parameters
    ///
    /// - `key`: user key bytes inside this bucket.
    pub fn get_sync(&self, key: &[u8]) -> Result<Option<Value>> {
        self.db.get_at_state_with_pin_state(
            &self.state,
            key,
            self.db.last_committed_sequence(),
            false,
        )
    }

    /// Reads `key` at the sequence pinned by `snapshot`.
    pub fn get_at_sync(&self, snapshot: &Snapshot, key: &[u8]) -> Result<Option<Value>> {
        self.db.get_at_state_with_pin_state(
            &self.state,
            key,
            snapshot.read_sequence(),
            snapshot.is_pinned(),
        )
    }

    /// Creates a point-read handle for repeated reads under `snapshot`.
    ///
    /// The reader captures the read sequence and a stable set of sources once,
    /// then reuses them for many point reads. That reduces repeated lock
    /// traffic for workloads that read many keys under one snapshot.
    ///
    /// Use [`BucketReader::get_sync`] or [`BucketReader::get`] when the caller
    /// can inspect bytes through [`PointValue::as_bytes`] and does not need an
    /// owned `Vec<u8>`.
    ///
    /// # Parameters
    ///
    /// - `snapshot`: snapshot that defines visibility for all reads made
    ///   through the returned reader.
    pub fn reader<'snapshot>(
        &self,
        snapshot: &'snapshot Snapshot,
    ) -> Result<BucketReader<'snapshot>> {
        self.db.reader_for_state(&self.state, snapshot)
    }

    /// Writes one key/value pair to this bucket using default write options.
    ///
    /// The write is committed through the parent database as a one-operation
    /// batch. Named bucket writes use the bucket name in WAL and manifest
    /// metadata; default bucket writes use the built-in default bucket name.
    ///
    /// # Parameters
    ///
    /// - `key`: user key bytes in this bucket.
    /// - `value`: value bytes to store.
    pub fn put_sync(&self, key: impl Into<Vec<u8>>, value: impl Into<Value>) -> Result<()> {
        self.put_with_options_sync(key, value, WriteOptions::default())
            .map(|_| ())
    }

    /// Writes one key/value pair and returns the commit information.
    pub fn put_with_options_sync(
        &self,
        key: impl Into<Vec<u8>>,
        value: impl Into<Value>,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.put(key, value);
        } else {
            batch.put_bucket(self.name.as_str(), key, value)?;
        }
        self.db.write_sync(batch, options)
    }

    /// Adds a point delete for one key using default write options.
    pub fn delete_sync(&self, key: impl Into<Vec<u8>>) -> Result<()> {
        self.delete_with_options_sync(key, WriteOptions::default())
            .map(|_| ())
    }

    /// Adds a point delete and returns the commit information.
    pub fn delete_with_options_sync(
        &self,
        key: impl Into<Vec<u8>>,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.delete(key);
        } else {
            batch.delete_bucket(self.name.as_str(), key)?;
        }
        self.db.write_sync(batch, options)
    }

    /// Adds a range delete using default write options.
    pub fn delete_range_sync(&self, range: KeyRange) -> Result<()> {
        self.delete_range_with_options_sync(range, WriteOptions::default())
            .map(|_| ())
    }

    /// Adds a range delete and returns the commit information.
    pub fn delete_range_with_options_sync(
        &self,
        range: KeyRange,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.delete_range(range);
        } else {
            batch.delete_range_bucket(self.name.as_str(), range)?;
        }
        self.db.write_sync(batch, options)
    }

    /// Returns a forward iterator over visible rows in `range`.
    ///
    /// This is the bucket-scoped form of [`Db::range_sync`]. Rows are returned
    /// in ascending byte order and filtered to the newest value visible at the
    /// sequence captured when the iterator is created.
    ///
    /// # Parameters
    ///
    /// - `range`: user-key range inside this bucket.
    pub fn range_sync(&self, range: &KeyRange) -> Result<Iter> {
        self.range_at_sequence(range, self.db.last_committed_sequence(), Direction::Forward)
    }

    /// Returns a forward iterator whose blob values are read on demand.
    pub fn range_lazy_sync(&self, range: &KeyRange) -> Result<LazyIter> {
        self.range_lazy_at_sequence(range, self.db.last_committed_sequence(), Direction::Forward)
    }

    /// Returns a forward iterator over `range` at `snapshot`.
    pub fn range_at_sync(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<Iter> {
        self.range_at_sequence(range, snapshot.read_sequence(), Direction::Forward)
    }

    /// Returns a forward value-lazy iterator at `snapshot`.
    pub fn range_lazy_at_sync(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<LazyIter> {
        self.range_lazy_at_sequence(range, snapshot.read_sequence(), Direction::Forward)
    }

    /// Returns a reverse iterator over visible rows in `range`.
    pub fn range_reverse_sync(&self, range: &KeyRange) -> Result<Iter> {
        self.range_at_sequence(range, self.db.last_committed_sequence(), Direction::Reverse)
    }

    /// Returns a reverse iterator whose blob values are read on demand.
    pub fn range_lazy_reverse_sync(&self, range: &KeyRange) -> Result<LazyIter> {
        self.range_lazy_at_sequence(range, self.db.last_committed_sequence(), Direction::Reverse)
    }

    /// Returns a reverse iterator over `range` at `snapshot`.
    pub fn range_reverse_at_sync(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<Iter> {
        self.range_at_sequence(range, snapshot.read_sequence(), Direction::Reverse)
    }

    /// Returns a reverse value-lazy iterator at `snapshot`.
    pub fn range_lazy_reverse_at_sync(
        &self,
        snapshot: &Snapshot,
        range: &KeyRange,
    ) -> Result<LazyIter> {
        self.range_lazy_at_sequence(range, snapshot.read_sequence(), Direction::Reverse)
    }

    /// Returns a forward iterator over rows whose keys begin with `prefix`.
    pub fn prefix_sync(&self, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.prefix_at_sequence(
            &prefix,
            self.db.last_committed_sequence(),
            Direction::Forward,
        )
    }

    /// Returns a forward prefix iterator whose blob values are read on demand.
    pub fn prefix_lazy_sync(&self, prefix: impl Into<Vec<u8>>) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.prefix_lazy_at_sequence(
            &prefix,
            self.db.last_committed_sequence(),
            Direction::Forward,
        )
    }

    /// Returns a forward prefix iterator at `snapshot`.
    pub fn prefix_at_sync(&self, snapshot: &Snapshot, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.prefix_at_sequence(&prefix, snapshot.read_sequence(), Direction::Forward)
    }

    /// Returns a forward value-lazy prefix iterator at `snapshot`.
    pub fn prefix_lazy_at_sync(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.prefix_lazy_at_sequence(&prefix, snapshot.read_sequence(), Direction::Forward)
    }

    /// Returns a reverse iterator over rows whose keys begin with `prefix`.
    pub fn prefix_reverse_sync(&self, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.prefix_at_sequence(
            &prefix,
            self.db.last_committed_sequence(),
            Direction::Reverse,
        )
    }

    /// Returns a reverse prefix iterator whose blob values are read on demand.
    pub fn prefix_lazy_reverse_sync(&self, prefix: impl Into<Vec<u8>>) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.prefix_lazy_at_sequence(
            &prefix,
            self.db.last_committed_sequence(),
            Direction::Reverse,
        )
    }

    /// Returns a reverse prefix iterator at `snapshot`.
    pub fn prefix_reverse_at_sync(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<Iter> {
        let prefix = prefix.into();
        self.prefix_at_sequence(&prefix, snapshot.read_sequence(), Direction::Reverse)
    }

    /// Returns a reverse value-lazy prefix iterator at `snapshot`.
    pub fn prefix_lazy_reverse_at_sync(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.prefix_lazy_at_sequence(&prefix, snapshot.read_sequence(), Direction::Reverse)
    }

    #[must_use]
    /// Builds an empty iterator with the requested direction.
    pub fn empty_iter(direction: Direction) -> Iter {
        Iter::empty(direction)
    }

    fn range_at_sequence(
        &self,
        range: &KeyRange,
        read_sequence: crate::types::Sequence,
        direction: Direction,
    ) -> Result<Iter> {
        self.db
            .range_at_sequence(self.name.as_str(), range, read_sequence, direction)
    }

    fn range_lazy_at_sequence(
        &self,
        range: &KeyRange,
        read_sequence: crate::types::Sequence,
        direction: Direction,
    ) -> Result<LazyIter> {
        self.db
            .range_lazy_at_sequence(self.name.as_str(), range, read_sequence, direction)
    }

    fn prefix_at_sequence(
        &self,
        prefix: &[u8],
        read_sequence: crate::types::Sequence,
        direction: Direction,
    ) -> Result<Iter> {
        self.db
            .prefix_at_sequence(self.name.as_str(), prefix, read_sequence, direction)
    }

    fn prefix_lazy_at_sequence(
        &self,
        prefix: &[u8],
        read_sequence: crate::types::Sequence,
        direction: Direction,
    ) -> Result<LazyIter> {
        self.db
            .prefix_lazy_at_sequence(self.name.as_str(), prefix, read_sequence, direction)
    }
}

/// Primary async bucket API. Synchronous callers can use the explicit
/// `*_sync` adapters above.
#[allow(clippy::unused_async)]
impl Bucket {
    /// Reads the newest committed value for `key` from this bucket.
    pub async fn get(&self, key: &[u8]) -> Result<Option<Value>> {
        self.db
            .get_at_state_with_pin_state_async(
                &self.state,
                key,
                self.db.last_committed_sequence(),
                false,
            )
            .await
    }

    /// Reads `key` at the sequence pinned by `snapshot`.
    pub async fn get_at(&self, snapshot: &Snapshot, key: &[u8]) -> Result<Option<Value>> {
        self.db
            .get_at_state_with_pin_state_async(
                &self.state,
                key,
                snapshot.read_sequence(),
                snapshot.is_pinned(),
            )
            .await
    }

    /// Writes one key/value pair to this bucket using default write options.
    pub async fn put(&self, key: impl Into<Vec<u8>>, value: impl Into<Value>) -> Result<()> {
        self.put_with_options(key, value, WriteOptions::default())
            .await
            .map(|_| ())
    }

    /// Writes one key/value pair and returns the commit information.
    pub async fn put_with_options(
        &self,
        key: impl Into<Vec<u8>>,
        value: impl Into<Value>,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.put(key, value);
        } else {
            batch.put_bucket(self.name.as_str(), key, value)?;
        }
        self.db.write(batch, options).await
    }

    /// Adds a point delete for one key using default write options.
    pub async fn delete(&self, key: impl Into<Vec<u8>>) -> Result<()> {
        self.delete_with_options(key, WriteOptions::default())
            .await
            .map(|_| ())
    }

    /// Adds a point delete and returns the commit information.
    pub async fn delete_with_options(
        &self,
        key: impl Into<Vec<u8>>,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.delete(key);
        } else {
            batch.delete_bucket(self.name.as_str(), key)?;
        }
        self.db.write(batch, options).await
    }

    /// Adds a range delete using default write options.
    pub async fn delete_range(&self, range: KeyRange) -> Result<()> {
        self.delete_range_with_options(range, WriteOptions::default())
            .await
            .map(|_| ())
    }

    /// Adds a range delete and returns the commit information.
    pub async fn delete_range_with_options(
        &self,
        range: KeyRange,
        options: WriteOptions,
    ) -> Result<CommitInfo> {
        let mut batch = WriteBatch::new();
        if self.name.as_str() == DEFAULT_BUCKET_NAME {
            batch.delete_range(range);
        } else {
            batch.delete_range_bucket(self.name.as_str(), range)?;
        }
        self.db.write(batch, options).await
    }

    /// Returns a forward iterator over visible rows in `range`.
    pub async fn range(&self, range: &KeyRange) -> Result<Iter> {
        self.db
            .range_at_sequence_async(
                self.name.as_str(),
                range,
                self.db.last_committed_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward iterator whose blob values are read on demand.
    pub async fn range_lazy(&self, range: &KeyRange) -> Result<LazyIter> {
        self.db
            .range_lazy_at_sequence_async(
                self.name.as_str(),
                range,
                self.db.last_committed_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward iterator over `range` at `snapshot`.
    pub async fn range_at(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<Iter> {
        self.db
            .range_at_sequence_async(
                self.name.as_str(),
                range,
                snapshot.read_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward value-lazy iterator at `snapshot`.
    pub async fn range_lazy_at(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<LazyIter> {
        self.db
            .range_lazy_at_sequence_async(
                self.name.as_str(),
                range,
                snapshot.read_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a reverse iterator over visible rows in `range`.
    pub async fn range_reverse(&self, range: &KeyRange) -> Result<Iter> {
        self.db
            .range_at_sequence_async(
                self.name.as_str(),
                range,
                self.db.last_committed_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse iterator whose blob values are read on demand.
    pub async fn range_lazy_reverse(&self, range: &KeyRange) -> Result<LazyIter> {
        self.db
            .range_lazy_at_sequence_async(
                self.name.as_str(),
                range,
                self.db.last_committed_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse iterator over `range` at `snapshot`.
    pub async fn range_reverse_at(&self, snapshot: &Snapshot, range: &KeyRange) -> Result<Iter> {
        self.db
            .range_at_sequence_async(
                self.name.as_str(),
                range,
                snapshot.read_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse value-lazy iterator at `snapshot`.
    pub async fn range_lazy_reverse_at(
        &self,
        snapshot: &Snapshot,
        range: &KeyRange,
    ) -> Result<LazyIter> {
        self.db
            .range_lazy_at_sequence_async(
                self.name.as_str(),
                range,
                snapshot.read_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a forward iterator over rows whose keys begin with `prefix`.
    pub async fn prefix(&self, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.db
            .prefix_at_sequence_async(
                self.name.as_str(),
                &prefix,
                self.db.last_committed_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward prefix iterator whose blob values are read on demand.
    pub async fn prefix_lazy(&self, prefix: impl Into<Vec<u8>>) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.db
            .prefix_lazy_at_sequence_async(
                self.name.as_str(),
                &prefix,
                self.db.last_committed_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward prefix iterator at `snapshot`.
    pub async fn prefix_at(&self, snapshot: &Snapshot, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.db
            .prefix_at_sequence_async(
                self.name.as_str(),
                &prefix,
                snapshot.read_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a forward value-lazy prefix iterator at `snapshot`.
    pub async fn prefix_lazy_at(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.db
            .prefix_lazy_at_sequence_async(
                self.name.as_str(),
                &prefix,
                snapshot.read_sequence(),
                Direction::Forward,
            )
            .await
    }

    /// Returns a reverse iterator over rows whose keys begin with `prefix`.
    pub async fn prefix_reverse(&self, prefix: impl Into<Vec<u8>>) -> Result<Iter> {
        let prefix = prefix.into();
        self.db
            .prefix_at_sequence_async(
                self.name.as_str(),
                &prefix,
                self.db.last_committed_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse prefix iterator whose blob values are read on demand.
    pub async fn prefix_lazy_reverse(&self, prefix: impl Into<Vec<u8>>) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.db
            .prefix_lazy_at_sequence_async(
                self.name.as_str(),
                &prefix,
                self.db.last_committed_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse prefix iterator at `snapshot`.
    pub async fn prefix_reverse_at(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<Iter> {
        let prefix = prefix.into();
        self.db
            .prefix_at_sequence_async(
                self.name.as_str(),
                &prefix,
                snapshot.read_sequence(),
                Direction::Reverse,
            )
            .await
    }

    /// Returns a reverse value-lazy prefix iterator at `snapshot`.
    pub async fn prefix_lazy_reverse_at(
        &self,
        snapshot: &Snapshot,
        prefix: impl Into<Vec<u8>>,
    ) -> Result<LazyIter> {
        let prefix = prefix.into();
        self.db
            .prefix_lazy_at_sequence_async(
                self.name.as_str(),
                &prefix,
                snapshot.read_sequence(),
                Direction::Reverse,
            )
            .await
    }
}

impl BucketReader<'_> {
    pub(crate) fn new(
        db: Db,
        state: Arc<LsmTree>,
        read_snapshot: LsmPointReadSnapshot,
        read_sequence: Sequence,
        read_pin: Option<Snapshot>,
    ) -> Self {
        Self {
            db,
            state,
            read_snapshot,
            read_sequence,
            _read_pin: read_pin,
            _snapshot: PhantomData,
        }
    }

    /// Reads `key` using the sources pinned when this reader was created.
    ///
    /// This returns a `PointValue` so inline table values can be inspected
    /// without first copying them into an owned `Vec<u8>`.
    pub fn get_sync(&self, key: &[u8]) -> Result<Option<PointValue>> {
        self.db.get_value_at_state_snapshot_with_pin_state(
            &self.state,
            &self.read_snapshot,
            key,
            self.read_sequence,
            true,
        )
    }

    /// Reads `key` and returns an owned value.
    ///
    /// Use this when the caller needs the same owned-value shape as
    /// `Db::get_sync` or `Bucket::get_sync`.
    pub fn get_owned_sync(&self, key: &[u8]) -> Result<Option<Value>> {
        self.get_sync(key)?
            .map(|value| Ok(value.into_value()))
            .transpose()
    }

    /// Reads `key` using the sources pinned when this reader was created.
    ///
    /// This returns a `PointValue` so inline table values can be inspected
    /// without first copying them into an owned `Vec<u8>`.
    pub async fn get(&self, key: &[u8]) -> Result<Option<PointValue>> {
        self.db
            .get_value_at_state_snapshot_with_pin_state_async(
                &self.state,
                &self.read_snapshot,
                key,
                self.read_sequence,
                true,
            )
            .await
    }

    /// Reads `key` and returns an owned value.
    ///
    /// Use this when the caller needs the same owned-value shape as
    /// `Db::get_sync` or `Bucket::get_sync`.
    pub async fn get_owned(&self, key: &[u8]) -> Result<Option<Value>> {
        self.get(key)
            .await?
            .map(|value| Ok(value.into_value()))
            .transpose()
    }
}