Uses of Interface
com.hazelcast.vector.SearchResults
Package
Description
Vector capability
Provides Jet pipeline support for vector collections.
-
Uses of SearchResults in com.hazelcast.vector
Modifier and TypeMethodDescriptionVectorCollection.searchAsync
(com.hazelcast.vector.VectorValues vectors, com.hazelcast.vector.SearchOptions searchOptions) Perform asynchronously a similarity search according to the options in givensearchOptions
. -
Uses of SearchResults in com.hazelcast.vector.jet
Modifier and TypeMethodDescriptionstatic <T,
K, V, R> com.hazelcast.function.FunctionEx<com.hazelcast.jet.pipeline.StreamStage<T>, com.hazelcast.jet.pipeline.StreamStage<R>> VectorTransforms.mapUsingVectorSearch
(VectorCollection<K, V> collection, com.hazelcast.vector.SearchOptions options, com.hazelcast.function.FunctionEx<T, com.hazelcast.vector.VectorValues> toVectorFn, com.hazelcast.function.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> com.hazelcast.function.FunctionEx<com.hazelcast.jet.pipeline.StreamStage<T>, com.hazelcast.jet.pipeline.StreamStage<R>> VectorTransforms.mapUsingVectorSearch
(String collectionName, com.hazelcast.vector.SearchOptions options, com.hazelcast.function.FunctionEx<T, com.hazelcast.vector.VectorValues> toVectorFn, com.hazelcast.function.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> com.hazelcast.function.FunctionEx<com.hazelcast.jet.pipeline.BatchStage<T>, com.hazelcast.jet.pipeline.BatchStage<R>> VectorTransforms.mapUsingVectorSearchBatch
(VectorCollection<K, V> collection, com.hazelcast.vector.SearchOptions options, com.hazelcast.function.FunctionEx<T, com.hazelcast.vector.VectorValues> toVectorFn, com.hazelcast.function.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> com.hazelcast.function.FunctionEx<com.hazelcast.jet.pipeline.BatchStage<T>, com.hazelcast.jet.pipeline.BatchStage<R>> VectorTransforms.mapUsingVectorSearchBatch
(String collectionName, com.hazelcast.vector.SearchOptions options, com.hazelcast.function.FunctionEx<T, com.hazelcast.vector.VectorValues> toVectorFn, com.hazelcast.function.BiFunctionEx<T, SearchResults<K, V>, R> resultFn) A stage-transforming method that adds similarity search pipeline stage for batch pipelines.