PrefixSearchScan scans records with keys matching the given prefix and regex pattern. The regex is applied to the portion of the key after removing the prefix. offset: number of matching records to skip limitNum: maximum number of records to return
(prefix []byte, reg string, offset, limitNum int)
| 103 | // offset: number of matching records to skip |
| 104 | // limitNum: maximum number of records to return |
| 105 | PrefixSearchScan(prefix []byte, reg string, offset, limitNum int) []*core.Record |
| 106 | |
| 107 | // PopMin removes and returns the item with the smallest key. |
| 108 | // Returns the item and true if the list is not empty, nil and false otherwise. |
no outgoing calls