Uses of Interface
com.hazelcast.vector.SearchResults
Packages that use SearchResults
Package
Description
Vector capability
Provides Jet pipeline support for vector collections.
-
Uses of SearchResults in com.hazelcast.vector
Methods in com.hazelcast.vector that return types with arguments of type SearchResultsModifier and TypeMethodDescriptionVectorCollection.searchAsync(VectorValues vectors, SearchOptions searchOptions) Perform asynchronously a similarity search according to the options in givensearchOptions. -
Uses of SearchResults in com.hazelcast.vector.jet
Method parameters in com.hazelcast.vector.jet with type arguments of type SearchResultsModifier 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.