Interface MatchServiceGrpc.AsyncService
-
- All Known Implementing Classes:
MatchServiceGrpc.MatchServiceImplBase
- Enclosing class:
- MatchServiceGrpc
public static interface MatchServiceGrpc.AsyncService
MatchService is a Google managed service for efficient vector similarity search at scale.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
findNeighbors(FindNeighborsRequest request, io.grpc.stub.StreamObserver<FindNeighborsResponse> responseObserver)
Finds the nearest neighbors of each vector within the request.default void
readIndexDatapoints(ReadIndexDatapointsRequest request, io.grpc.stub.StreamObserver<ReadIndexDatapointsResponse> responseObserver)
Reads the datapoints/vectors of the given IDs.
-
-
-
Method Detail
-
findNeighbors
default void findNeighbors(FindNeighborsRequest request, io.grpc.stub.StreamObserver<FindNeighborsResponse> responseObserver)
Finds the nearest neighbors of each vector within the request.
-
readIndexDatapoints
default void readIndexDatapoints(ReadIndexDatapointsRequest request, io.grpc.stub.StreamObserver<ReadIndexDatapointsResponse> responseObserver)
Reads the datapoints/vectors of the given IDs. A maximum of 1000 datapoints can be retrieved in a batch.
-
-