Type Definition tikv::storage::mvcc::reader::scanner::forward::ForwardKvScanner[][src]

type ForwardKvScanner<S> = ForwardScanner<S, LatestKvPolicy>;

This type can be used to scan keys starting from the given user key (greater than or equal).

Internally, for each key, rollbacks are ignored and smaller version will be tried. If the isolation level is SI, locks will be checked first.

Use ScannerBuilder to build ForwardKvScanner.