io.quarkus.redis.datasource.search.VectorAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-redis-client Show documentation
Show all versions of quarkus-redis-client Show documentation
Connect to Redis in either imperative or reactive style
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