Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
C
- clearAsync() - Method in interface com.hazelcast.vector.VectorCollection
-
Asynchronously clears all entries in the vector collection.
- com.hazelcast.vector - package com.hazelcast.vector
-
Vector capability
- com.hazelcast.vector.jet - package com.hazelcast.vector.jet
-
Provides Jet pipeline support for vector collections.
D
- deleteAsync(K) - Method in interface com.hazelcast.vector.VectorCollection
-
Removes asynchronously the association of given
keyto a document, if such an association existed.
F
- format() - Method in class com.hazelcast.vector.jet.FvecsFileFormat
- format() - Method in class com.hazelcast.vector.jet.IvecsFileFormat
- fvecs(String, String) - Static method in class com.hazelcast.vector.jet.VectorSources
-
Creates legacy file source in fvecs format.
- FVECS_FILE_FORMAT - Static variable in class com.hazelcast.vector.jet.FvecsFileFormat
-
Format id for fvecs.
- FvecsFileFormat - Class in com.hazelcast.vector.jet
-
fvecs format definition for Unified File Connector
- FvecsFileFormat() - Constructor for class com.hazelcast.vector.jet.FvecsFileFormat
- fvecsFormat() - Static method in class com.hazelcast.vector.jet.VectorSources
-
Returns fvecs file format definition for use with Jet Unified File Connector (
FileSources).
G
- getAsync(K) - Method in interface com.hazelcast.vector.VectorCollection
-
Asynchronously gets the
VectorDocumentassociated with the given key ornullif no such association exists. - getCollection(HazelcastInstance, VectorCollectionConfig) - Static method in interface com.hazelcast.vector.VectorCollection
- getCollection(HazelcastInstance, String) - Static method in interface com.hazelcast.vector.VectorCollection
I
- IndexMutationDisallowedException - Exception in com.hazelcast.vector
-
Exception that indicates that the state found on this index disallows mutation.
- IndexMutationDisallowedException(String) - Constructor for exception com.hazelcast.vector.IndexMutationDisallowedException
- ivecs(String, String) - Static method in class com.hazelcast.vector.jet.VectorSources
-
Creates legacy file source in ivecs format.
- IVECS_FILE_FORMAT - Static variable in class com.hazelcast.vector.jet.IvecsFileFormat
-
Format id for ivecs.
- IvecsFileFormat - Class in com.hazelcast.vector.jet
-
ivecs format definition for Unified File Connector
- IvecsFileFormat() - Constructor for class com.hazelcast.vector.jet.IvecsFileFormat
- ivecsFormat() - Static method in class com.hazelcast.vector.jet.VectorSources
-
Returns ivecs file format definition for use with Jet Unified File Connector (
FileSources).
M
- mapUsingVectorSearch(VectorCollection<K, V>, SearchOptions, FunctionEx<T, VectorValues>, BiFunctionEx<T, SearchResults<K, V>, R>) - Static method in class com.hazelcast.vector.jet.VectorTransforms
-
A stage-transforming method that adds similarity search pipeline stage for streaming pipelines.
- mapUsingVectorSearch(String, SearchOptions, FunctionEx<T, VectorValues>, BiFunctionEx<T, SearchResults<K, V>, R>) - Static method in class com.hazelcast.vector.jet.VectorTransforms
-
A stage-transforming method that adds similarity search pipeline stage for streaming pipelines.
- mapUsingVectorSearchBatch(VectorCollection<K, V>, SearchOptions, FunctionEx<T, VectorValues>, BiFunctionEx<T, SearchResults<K, V>, R>) - Static method in class com.hazelcast.vector.jet.VectorTransforms
-
A stage-transforming method that adds similarity search pipeline stage for batch pipelines.
- mapUsingVectorSearchBatch(String, SearchOptions, FunctionEx<T, VectorValues>, BiFunctionEx<T, SearchResults<K, V>, R>) - Static method in class com.hazelcast.vector.jet.VectorTransforms
-
A stage-transforming method that adds similarity search pipeline stage for batch pipelines.
O
- optimizeAsync() - Method in interface com.hazelcast.vector.VectorCollection
-
Optimize the only index by fully removing nodes marked for deletion, trimming neighbor sets to the advertised degree, and updating the entry node as necessary.
- optimizeAsync(String) - Method in interface com.hazelcast.vector.VectorCollection
-
Optimize the specified index by fully removing nodes marked for deletion, trimming neighbor sets to the advertised degree, and updating the entry node as necessary.
P
- putAllAsync(Map<? extends K, VectorDocument<V>>) - Method in interface com.hazelcast.vector.VectorCollection
-
Inserts asynchronously the given map of key-document pairs.
- putAsync(K, VectorDocument<V>) - Method in interface com.hazelcast.vector.VectorCollection
-
Asynchronously associates the given key with the
valueVectorDocument, returning theVectorDocumentpreviously associated with thekeyif such an association existed. - putIfAbsentAsync(K, VectorDocument<V>) - Method in interface com.hazelcast.vector.VectorCollection
-
If the given
keyis not already associated with aVectorDocument, associates it with the givenvalueand returnsnull, else returns the current value.
R
- removeAsync(K) - Method in interface com.hazelcast.vector.VectorCollection
-
Removes asynchronously the association of given
keyto a document, if such an association existed, returning theVectorDocumentpreviously associated with thekeyif such an association existed. - results() - Method in interface com.hazelcast.vector.SearchResults
S
- searchAsync(VectorValues, SearchOptions) - Method in interface com.hazelcast.vector.VectorCollection
-
Perform asynchronously a similarity search according to the options in given
searchOptions. - SearchResults<K,
V> - Interface in com.hazelcast.vector - setAsync(K, VectorDocument<V>) - Method in interface com.hazelcast.vector.VectorCollection
-
Asynchronously associates the given key with the
valueVectorDocument. - size() - Method in interface com.hazelcast.vector.SearchResults
- size() - Method in interface com.hazelcast.vector.VectorCollection
-
Returns the number of values in the vector collection.
V
- vectorCollection(VectorCollection<K, V>, FunctionEx<? super T, ? extends K>, FunctionEx<? super T, ? extends V>, FunctionEx<? super T, VectorValues>) - Static method in class com.hazelcast.vector.jet.VectorSinks
-
Returns a sink that writes vector documents with metadata and vector values to a vector collection.
- vectorCollection(VectorCollection<K, V>, FunctionEx<? super T, ? extends K>, FunctionEx<? super T, VectorDocument<? extends V>>) - Static method in class com.hazelcast.vector.jet.VectorSinks
-
Returns a sink that writes vector documents with metadata and vector values to a vector collection.
- vectorCollection(String, FunctionEx<? super T, ? extends K>, FunctionEx<? super T, ? extends V>, FunctionEx<? super T, VectorValues>) - Static method in class com.hazelcast.vector.jet.VectorSinks
-
Returns a sink that writes vector documents with metadata and vector values to a vector collection.
- vectorCollection(String, FunctionEx<? super T, ? extends K>, FunctionEx<? super T, VectorDocument<? extends V>>) - Static method in class com.hazelcast.vector.jet.VectorSinks
-
Returns a sink that writes vector documents with metadata and vector values to a vector collection.
- VectorCollection<K,
V> - Interface in com.hazelcast.vector -
A mapping of keys to
VectorDocuments. - VectorSinks - Class in com.hazelcast.vector.jet
-
Factory methods for Vector collection sinks
- VectorSources - Class in com.hazelcast.vector.jet
-
Sources for loading and processing standard vector data formats.
- VectorTransforms - Class in com.hazelcast.vector.jet
-
Transforms allowing to execute similarity search in Jet pipeline to enrich the stream.
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form