PrefixScan scans records with keys matching the given prefix. offset: number of matching records to skip limitNum: maximum number of records to return
(prefix []byte, offset, limitNum int)
| 97 | // offset: number of matching records to skip |
| 98 | // limitNum: maximum number of records to return |
| 99 | PrefixScan(prefix []byte, offset, limitNum int) []*core.Record |
| 100 | |
| 101 | // PrefixSearchScan scans records with keys matching the given prefix and regex pattern. |
| 102 | // The regex is applied to the portion of the key after removing the prefix. |
no outgoing calls