What problem does it solve? Vector search systems often suffer from high latency, poor recall, or excessive memory consumption when indexes are left at default settings. This Skill provides concrete guidance and code templates for tuning vector indexes to meet production latency, recall, and memory targets. ## Core Features & Use Cases - HNSW Parameter Benchmarking: Systematically benchmark M, efConstruction, and efSearch values against ground truth to find optimal recall-latency tradeoffs. - Quantization Strategies: Implement INT8 scalar, product, and binary quantization to compress vector storage by 4x-32x. - Qdrant Configuration: Create collections pre-configured for recall, speed, balanced, or memory optimization targets. - Use Case: You have 10 million embeddings and search latency exceeds your 10ms budget. Use the benchmarking template to sweep HNSW parameters, apply INT8 quantization to cut memory by 4x, and validate recall stays above 95%. ## Quick Start Ask the AI to recommend HNSW parameters and a quantization strategy for your dataset size, recall target, and latency budget.