trusty-search-0.2.3 is not a library.
Visit the last successful build:
trusty-search-0.20.4
trusty-search
Machine-wide, blazingly fast hybrid code search service.
- Single install per machine (not per-project), one daemon serves all your projects
- Multiple named indexes — register one per project
- Hybrid search: BM25 (lexical) + HNSW vector (semantic) + KG expansion, fused via Reciprocal Rank Fusion
- Query-type routing: Definition / Usage / Conceptual / BugDebt — each gets the optimal weighting
- MCP server: stdio + HTTP/SSE — drop-in for Claude Code
- Zero cold-start: HNSW stays hot, embeddings LRU-cached, sub-10ms p50 warm queries
- Native multi-request:
Arc<SearchState>, concurrent reads viaRwLock, axum HTTP/2
Install
Quick start
# Start the machine-wide daemon
# Index a project
# Query
# Or run as MCP server for Claude Code
Architecture
See CLAUDE.md for full architecture, query pipeline, and HTTP API reference.