Uses of Interface
com.hazelcast.vector.SearchOptions
Packages that use SearchOptions
Package
Description
Vector capability
Provides Jet pipeline support for vector collections.
-
Uses of SearchOptions in com.hazelcast.vector
Methods in com.hazelcast.vector that return SearchOptionsModifier and TypeMethodDescriptionSearchOptionsBuilder.build()CreatesSearchOptionsstatic SearchOptionsSearchOptions.of(int limit, boolean includeValue, boolean includeVectors) Methods in com.hazelcast.vector with parameters of type SearchOptionsModifier and TypeMethodDescriptionHint.get(SearchOptions options) booleanHint.isPresent(SearchOptions options) VectorCollection.searchAsync(VectorValues vectors, SearchOptions searchOptions) Perform asynchronously a similarity search according to the options in givensearchOptions. -
Uses of SearchOptions in com.hazelcast.vector.jet
Methods in com.hazelcast.vector.jet with parameters of type SearchOptionsModifier and TypeMethodDescriptionstatic <T,K, V, R> FunctionEx<StreamStage<T>, StreamStage<R>> VectorTransforms.mapUsingVectorSearch(VectorCollection<K, V> collection, SearchOptions options, FunctionEx<T, VectorValues> toVectorFn, BiFunctionEx<T, SearchResults<K, V>, R> resultFn) A stage-transforming method that adds similarity search pipeline stage for streaming pipelines.static <T,K, V, R> FunctionEx<StreamStage<T>, StreamStage<R>> VectorTransforms.mapUsingVectorSearch(String collectionName, SearchOptions options, FunctionEx<T, VectorValues> toVectorFn, BiFunctionEx<T, SearchResults<K, V>, R> resultFn) A stage-transforming method that adds similarity search pipeline stage for streaming pipelines.static <T,K, V, R> FunctionEx<BatchStage<T>, BatchStage<R>> VectorTransforms.mapUsingVectorSearchBatch(VectorCollection<K, V> collection, SearchOptions options, FunctionEx<T, VectorValues> toVectorFn, BiFunctionEx<T, SearchResults<K, V>, R> resultFn) A stage-transforming method that adds similarity search pipeline stage for batch pipelines.static <T,K, V, R> FunctionEx<BatchStage<T>, BatchStage<R>> VectorTransforms.mapUsingVectorSearchBatch(String collectionName, SearchOptions options, FunctionEx<T, VectorValues> toVectorFn, BiFunctionEx<T, SearchResults<K, V>, R> resultFn) A stage-transforming method that adds similarity search pipeline stage for batch pipelines.