Partager via


QdrantMemoryStore.RemoveWithPointIdBatchAsync Method

Definition

Remove a MemoryRecord from the Qdrant Vector database by a group of pointIds.

public System.Threading.Tasks.Task RemoveWithPointIdBatchAsync (string collectionName, System.Collections.Generic.IEnumerable<string> pointIds, System.Threading.CancellationToken cancellationToken = default);
member this.RemoveWithPointIdBatchAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function RemoveWithPointIdBatchAsync (collectionName As String, pointIds As IEnumerable(Of String), Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

collectionName
String

The name associated with a collection of embeddings.

pointIds
IEnumerable<String>

The unique indexed IDs associated with the Qdrant vector records to remove.

cancellationToken
CancellationToken

The CancellationToken to monitor for cancellation requests. The default is None.

Returns

Exceptions

Applies to