Uses of Interface
com.github.jelmerk.knn.hnsw.ObjectSerializer
-
Packages that use ObjectSerializer Package Description com.github.jelmerk.knn.hnsw -
-
Uses of ObjectSerializer in com.github.jelmerk.knn.hnsw
Classes in com.github.jelmerk.knn.hnsw that implement ObjectSerializer Modifier and Type Class Description class
JavaObjectSerializer<T>
Implementation ofObjectSerializer
that uses java serialization to write the value.Methods in com.github.jelmerk.knn.hnsw that return ObjectSerializer Modifier and Type Method Description ObjectSerializer<TId>
HnswIndex. getItemIdSerializer()
Returns the serializer used to serialize item id's when saving the index.ObjectSerializer<TItem>
HnswIndex. getItemSerializer()
Returns the serializer used to serialize items when saving the index.Methods in com.github.jelmerk.knn.hnsw with parameters of type ObjectSerializer Modifier and Type Method Description <TId,TItem extends Item<TId,TVector>>
HnswIndex.RefinedBuilder<TId,TVector,TItem,TDistance>HnswIndex.Builder. withCustomSerializers(ObjectSerializer<TId> itemIdSerializer, ObjectSerializer<TItem> itemSerializer)
Register the serializers used when saving the index.HnswIndex.RefinedBuilder<TId,TVector,TItem,TDistance>
HnswIndex.RefinedBuilder. withCustomSerializers(ObjectSerializer<TId> itemIdSerializer, ObjectSerializer<TItem> itemSerializer)
Register the serializers used when saving the index.
-