pub async fn search<S: Store>(
store: &S,
req: &SearchRequest<'_>,
) -> Result<Vec<SearchResultItem>>Expand description
Run a hybrid search against a Store backend.
This is the core search function that all frontends (CLI, HTTP) delegate to. It fetches candidates from the store, normalizes scores, merges, aggregates by document, and returns sorted results.