QdrantVectorDbClient.DeleteVectorsByIdAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delete vectors by their unique Qdrant IDs.
public System.Threading.Tasks.Task DeleteVectorsByIdAsync (string collectionName, System.Collections.Generic.IEnumerable<string> pointIds, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteVectorsByIdAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteVectorsByIdAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function DeleteVectorsByIdAsync (collectionName As String, pointIds As IEnumerable(Of String), Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- collectionName
- String
The name assigned to a collection of vectors.
- pointIds
- IEnumerable<String>
The unique IDs used to index Qdrant vector entries.
- cancellationToken
- CancellationToken
The CancellationToken to monitor for cancellation requests. The default is None.