prorm API Reference
    Preparing search index...

    Interface RocksDBStoreOptions

    Connection options for RocksDBStore.

    interface RocksDBStoreOptions {
        path?: string;
        client?: RocksDBClientLike;
    }
    Index
    path?: string

    Filesystem path for the RocksDB database directory. Defaults to './data/rocksdb'.

    client?: RocksDBClientLike

    A pre-built rocksdb client (or a compatible mock). When provided, connect() uses it directly and skips require('rocksdb') entirely — this is how tests inject a mock without the real driver installed.