Uses of Class
com.redis.vl.query.VectorRangeQuery.Builder
Packages that use VectorRangeQuery.Builder
-
Uses of VectorRangeQuery.Builder in com.redis.vl.query
Methods in com.redis.vl.query that return VectorRangeQuery.BuilderModifier and TypeMethodDescriptionstatic VectorRangeQuery.BuilderVectorRangeQuery.builder()Create a new Builder for VectorRangeQuery.VectorRangeQuery.Builder.distanceThreshold(double threshold) Set the distance threshold for range filtering.VectorRangeQuery.Builder.epsilon(double epsilon) Set the epsilon value for approximate HNSW search.Set the vector field name to search.VectorRangeQuery.Builder.inOrder(boolean inOrder) Set whether query terms must appear in order.VectorRangeQuery.Builder.k(int k) Deprecated.Use numResults() insteadVectorRangeQuery.Builder.normalizeVectorDistance(boolean normalize) Set whether to normalize vector distances.VectorRangeQuery.Builder.numResults(int numResults) Set the maximum number of results to return.VectorRangeQuery.Builder.returnFields(String... fields) Set the fields to return in results (varargs).VectorRangeQuery.Builder.returnFields(List<String> fields) Set the fields to return in results (list).VectorRangeQuery.Builder.returnScore(boolean returnScore) Set whether to return scores with results.VectorRangeQuery.Builder.searchBufferCapacity(Integer searchBufferCapacity) Set the search buffer capacity parameter for SVS-VAMANA algorithm.VectorRangeQuery.Builder.searchWindowSize(Integer searchWindowSize) Set the search window size parameter for SVS-VAMANA algorithm.VectorRangeQuery.Builder.skipDecodeFields(String... fields) Set fields that should not be decoded from binary format (varargs).VectorRangeQuery.Builder.skipDecodeFields(List<String> skipDecodeFields) Set fields that should not be decoded from binary format.Set the sort field using SortField.Set the field name to sort results by (defaults to ascending).Set the sort field with explicit direction.Set the sort fields (supports multiple fields, but only first is used).VectorRangeQuery.Builder.sortDescending(boolean descending) Set whether to sort results in descending order.VectorRangeQuery.Builder.useSearchHistory(String useSearchHistory) Set the use search history parameter for SVS-VAMANA algorithm.VectorRangeQuery.Builder.vector(float[] vector) Set the query vector.