Data Operations
Zvec provides a complete set of data manipulation operations to manage documents in your collection.
| Operation | Purpose |
|---|---|
Insert | Add new documents (fails if the document ID already exists) |
Upsert | Insert new documents or replace existing ones by ID |
Update | Modify specific fields of existing documents by ID |
Delete | Delete documents by ID or using a scalar filter condition |
Query | Perform vector similarity search, optionally combined with scalar filtering and re-ranking |
Fetch | Retrieve full documents directly by ID |
All write operations (insert, upsert, update, delete) are immediately visible for querying — enabling true real-time, streaming workloads.