MCPcopy Create free account
hub / github.com/nutsdb/nutsdb / GetMinKey

Method GetMinKey

tx_btree.go:137–139  ·  view source on GitHub ↗
(bucket string)

Source from the content-addressed store, hash-verified

135}
136
137func (tx *Tx) GetMinKey(bucket string) ([]byte, error) {
138 return tx.getMaxOrMinKey(bucket, false)
139}
140
141func (tx *Tx) getMaxOrMinKey(bucket string, isMax bool) ([]byte, error) {
142 if err := tx.checkTxIsClosed(); err != nil {

Calls 1

getMaxOrMinKeyMethod · 0.95