Home / Companies / Qdrant / Blog / July 2026

July 2026 Summaries

2 posts from Qdrant

Filter
Month: Year:
Post Summaries Back to Blog
Qdrant has outperformed Elastic's DiskBBQ in a benchmark that demonstrated Qdrant's ability to deliver roughly twice the throughput and half the latency using only a third of the compute resources compared to DiskBBQ. The benchmark highlighted discrepancies in Elastic's testing methodology, which did not utilize Qdrant's two-stage retrieval and async disk scoring features, leading to an I/O bottleneck. Qdrant employed TurboQuant 4-bit quantization on smaller instances than Elastic, achieving superior performance on the same dataset. The Qdrant engine, available both on open-source and Qdrant Cloud, was tested on AWS m6g instances and outperformed Elastic's setup, which used GCP n4-standard-8 nodes. Elastic's DiskBBQ, positioned as a memory-efficient alternative, requires substantial RAM to maintain JVM stability, while Qdrant's approach leverages advanced quantization and disk scoring to maintain high efficiency even on smaller hardware configurations.
Jul 08, 2026 1,208 words in the original blog post.
Branch-aware semantic code search using Qdrant enhances traditional code searching by indexing codebases as vectors based on meaning, rather than mere lexical matches, which allows AI agents to retrieve relevant context efficiently. Unlike conventional methods like grep, which only reflect the currently active branch, semantic search faces challenges due to its static nature, leading to potential mismatches between the indexed version and the branch-specific code. Branch-aware search resolves this by scoping queries to the live view of a specific branch—considering its own commits, inherited changes, and excluding replaced elements. This approach involves making strategic decisions on what to index, using stable identities like paths and qualified symbol names to track changes across versions, and maintaining synchronization with Git through a derived index. The process ensures that each query is accurately scoped to the correct branch, thereby providing precise results even as code evolves across different branches. The implementation of branch-aware search is detailed in a tutorial, highlighting the nuances of handling merges, rebases, and scaling as repositories grow, ensuring efficient version tracking and retrieval without cluttering the system.
Jul 02, 2026 1,218 words in the original blog post.