Interface for the options when adding documents to the RedisVectorStore. It includes keys and batch size.

interface RedisAddOptions {
    batchSize?: number;
    keys?: string[];
}

Properties

Properties

batchSize?: number
keys?: string[]

Generated using TypeDoc