Signature
Parameters
| Parameter | Type | Description |
|---|---|---|
query | string | Natural language search query |
options | SearchOptions<T> | Optional search configuration |
SearchOptions
Return Value
score in descending order (highest similarity first).
Examples
Basic Search
With Options
With Vectors
Errors
| Error | Condition |
|---|---|
VectoriaNotInitializedError | Database not initialized |
QueryValidationError | Empty query, invalid topK, or invalid threshold |
Error Handling
Performance
- Brute-force: O(n) - scans all documents
- HNSW: O(log n) - approximate nearest neighbor
Related
add()
Add documents
filter()
Non-semantic filtering
SearchOptions
Search interface