github.com/TeaOSLab/EdgeNode@v1.3.8/internal/utils/kvstore/iterator_options.go (about)

     1  // Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
     2  
     3  package kvstore
     4  
     5  import "github.com/cockroachdb/pebble"
     6  
     7  type IteratorOptions struct {
     8  	LowerBound []byte
     9  	UpperBound []byte
    10  }
    11  
    12  func (this *IteratorOptions) RawOptions() *pebble.IterOptions {
    13  	return &pebble.IterOptions{
    14  		LowerBound: this.LowerBound,
    15  		UpperBound: this.UpperBound,
    16  	}
    17  }