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 SearchResults
    Modifier and Type
    Method
    Description
    VectorCollection.searchAsync(com.hazelcast.vector.VectorValues vectors, com.hazelcast.vector.SearchOptions searchOptions)
    Perform asynchronously a similarity search according to the options in given searchOptions.
  • Uses of SearchResults in com.hazelcast.vector.jet

    Method parameters in com.hazelcast.vector.jet with type arguments of type SearchResults
    Modifier and Type
    Method
    Description
    static <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.