Uses of Class
io.metaloom.qdrant.client.grpc.method.GrpcClientRequest
Packages that use GrpcClientRequest
-
Uses of GrpcClientRequest in io.metaloom.qdrant.client
Methods in io.metaloom.qdrant.client that return GrpcClientRequestModifier and TypeMethodDescriptiondefault <T> GrpcClientRequest<T>ClientSettings.request(Supplier<T> blockingSupplier, Supplier<com.google.common.util.concurrent.ListenableFuture<T>> asyncSupplier) -
Uses of GrpcClientRequest in io.metaloom.qdrant.client.grpc.method
Methods in io.metaloom.qdrant.client.grpc.method that return GrpcClientRequestModifier and TypeMethodDescriptionPointMethods.clearPayload(String collectionName, boolean wait, Points.Filter filter, Points.PointId... ids) Remove all payload for specified points.default GrpcClientRequest<Points.CountResponse>PointMethods.countPoints(String collectionName, Points.Filter filter, boolean exact) Count points which matches given filtering condition.CollectionMethods.createCollection(String collectionName, Collections.VectorParams params) Create new collection with given parameters.CollectionMethods.createCollection(String collectionName, Collections.VectorParamsMap paramsMap) CollectionMethods.createCollection(String collectionName, Collections.VectorsConfig config, Integer shardNumber, Integer replicationFactor, Integer writeConsistencyFactor, Boolean onDiskPayload, Collections.HnswConfigDiff hnswConfig, Collections.WalConfigDiff walConfig, Collections.OptimizersConfigDiff optimizersConfig, Integer timeout) Create new collection with given parameters.SnapshotMethods.createSnapshot()Create new snapshot of the whole storage.SnapshotMethods.createSnapshot(String collectionName) Create new snapshot for a collection.CollectionMethods.deleteCollection(String collectionName, Integer timeout) Drop collection and all associated dataPointMethods.deletePayload(String collectionName, boolean wait, Set<String> keys, Points.Filter filter, Points.PointId... ids) Delete specified key payload for points.PointMethods.deletePoints(String collectionName, boolean wait, Points.PointId... ids) Delete points.default GrpcClientRequest<Points.GetResponse>PointMethods.getPoint(String collectionName, boolean withPayload, boolean withVector, Points.PointId pointId) Retrieve full information of single point by id.default GrpcClientRequest<Points.GetResponse>PointMethods.getPoint(String collectionName, Points.PointId pointId) Retrieve full information of single point by id.default GrpcClientRequest<Points.GetResponse>PointMethods.getPoint(String collectionName, Points.WithPayloadSelector withPayloadSelector, Points.WithVectorsSelector withVectorsSelector, Points.PointId pointId) Retrieve full information of single point by id.default GrpcClientRequest<Points.GetResponse>PointMethods.getPoints(String collectionName, Points.WithPayloadSelector withPayloadSelector, Points.WithVectorsSelector withVectorsSelector, Points.PointId... ids) Retrieve multiple points by specified IDsdefault GrpcClientRequest<Points.GetResponse>PointMethods.getPoints(String collectionName, Points.WithPayloadSelector withPayloadSelector, Points.WithVectorsSelector withVectorsSelector, List<Points.PointId> ids) Retrieve multiple points by specified IDsCollectionMethods.listCollections()Get list name of all existing collections.SnapshotMethods.listSnapshots()Get list of snapshots of the whole storageSnapshotMethods.listSnapshots(String collectionName) Get list of snapshots for a collection.CollectionMethods.loadCollections(String collectionName) Get detailed information about specified existing collectionPointMethods.overwritePayload(String collectionName, boolean wait, Points.Filter filter, Map<String, JsonWithInt.Value> payload, Points.PointId... ids) Replace full payload of points with new one.SearchMethods.recommendBatchPoints(String collectionName, List<? extends Points.RecommendPoints> searches) Look for the points which are closer to stored positive examples and at the same time further to negative examples.SearchMethods.recommendPoints(String collectionName, List<Points.PointId> positives, int limit) Look for the points which are closer to stored positive examples and at the same time further to negative examples.SearchMethods.recommendPoints(String collectionName, List<Points.PointId> positives, int limit, String using) Look for the points which are closer to stored positive examples.SearchMethods.recommendPoints(String collectionName, List<Points.PointId> positives, List<Points.PointId> negatives, Points.Filter filter, Points.SearchParams params, int limit, Integer offset, Points.WithPayloadSelector withPayload, Points.WithVectorsSelector withVector, Float scoreThreshold, String using, Points.LookupLocation lookupFrom) Look for the points which are closer to stored positive examples and at the same time further to negative examples.default GrpcClientRequest<Points.ScrollResponse>PointMethods.scrollPoint(String collectionName, Points.PointId offset, Integer limit, Points.Filter filter, Points.WithPayloadSelector withPayloadSelector, Points.WithVectorsSelector withVectorSelector) Scroll request - paginate over all points which matches given filtering condition.SearchMethods.searchBatch(String collectionName, List<? extends Points.SearchPoints> searches) Retrieve by batch the closest points based on vector similarity and given filtering conditions.default GrpcClientRequest<Points.SearchResponse>SearchMethods.searchPoints(String collectionName, float[] vector, long limit, Float scoreThreshold) Retrieve closest points based on vector similarity.default GrpcClientRequest<Points.SearchResponse>SearchMethods.searchPoints(String collectionName, float[] vector, Points.Filter filter, Points.SearchParams params, long limit, Long offset, Points.WithPayloadSelector withPayloadSelector, Points.WithVectorsSelector withVectorsSelector, Float scoreThreshold) Retrieve closest points based on vector similarity and given filtering conditions.PointMethods.setPointPayload(String collectionName, boolean wait, Points.Filter filter, Map<String, JsonWithInt.Value> payload, Points.PointId... ids) Set payload values for points.CollectionMethods.updateCollection(String collectionName, Collections.CollectionParamsDiff paramConfig) Update parameters of the existing collectionCollectionMethods.updateCollection(String collectionName, Collections.CollectionParamsDiff paramConfig, Collections.OptimizersConfigDiff optimizerConfig, Integer timeout) Update parameters of the existing collectionCollectionMethods.updateCollectionAliases(List<? extends Collections.AliasOperations> actions, Integer timeout) Update aliases of the collections.PointMethods.upsertPoint(String collectionName, Points.PointStruct point, boolean wait) Perform insert + updates on point.PointMethods.upsertPoints(String collectionName, List<? extends Points.PointStruct> points, boolean wait) Perform insert + updates on points.