Arguments for the MyScaleStore class, which include the host, port, protocol, username, password, index type, index parameters, column map, database, table, and metric.

interface MyScaleLibArgs {
    host: string;
    password: string;
    port: string | number;
    username: string;
    columnMap?: ColumnMap;
    database?: string;
    indexParam?: Record<string, string>;
    indexType?: string;
    metric?: "IP" | "L2" | "Cosine";
    protocol?: string;
    table?: string;
}

Properties

host: string
password: string
port: string | number
username: string
columnMap?: ColumnMap
database?: string
indexParam?: Record<string, string>
indexType?: string
metric?: "IP" | "L2" | "Cosine"
protocol?: string
table?: string

Generated using TypeDoc