chickadee » rocksdb » rocksdb-iterator

rocksdb-iterator db #!key seek verify-checksums fill-cache read-tier tailing readahead-size pin-data total-order-seek (finalizer rocksdb-iter-destroy)procedure

Create a rocksdb-iterator-t instance which you can use to seek, and read keys and values from db.

seek, if present and not #f, will be passed to a call to rocksdb-iter-seek. You can specify 'first to initialize the iterator to the first entry, for example.

The finalizer argument works as in rocksdb-open, where you must call rocksdb-iter-destroy appropriately.

Plase see the ReadOptions in the C API documentation for the remaining arguments.