All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.redis.datasource.search.VectorAlgorithm Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.redis.datasource.search;

/**
 * The vector algorithm to use when searching k most similar vectors in an index.
 */
public enum VectorAlgorithm {

    /**
     * Brute force algorithm.
     */
    FLAT,

    /**
     * Hierarchical Navigable Small World Graph algorithm.
     */
    HNSW

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy