What problem does it solve? Vector search quality degrades silently when payload filters are unindexed, HNSW parameters are mistuned, or a vector store is fused with other retrieval sources without explicit score normalization. This Skill provides concrete Qdrant patterns and fusion-pipeline reasoning to prevent recall, latency, and staleness bugs in memory/retrieval systems. ## Core Features & Use Cases - Collection and Payload Design: Guidance on storing filterable metadata in payloads with create_payload_index, and using named vectors for hybrid dense+sparse search in one collection. - HNSW and Quantization Tuning: Explains m, ef_construct, and query-time ef tradeoffs, plus when to use Qdrant's built-in scalar, binary, or product quantization instead of custom compression. - Fusion Pipeline Integration: Patterns for slotting Qdrant as one leg of a multi-source retrieval system (cache, vector, graph, relational, rerank), including cache invalidation strategy and dual-backend (Postgres/SQLite) test discipline. - Use Case: When modifying a memory store's vector search leg, use this Skill to decide whether a filter belongs in the payload index, whether to raise per-query ef for recall, and how to isolate which retrieval leg caused a quality regression. ## Quick Start Ask the AI to review the vector search code in your memory store and recommend Qdrant indexing, filtering, and fusion-weight improvements.