search performance

Tech Optimizer
July 22, 2026
Google has introduced a preview of its columnar engine-accelerated HNSW feature for AlloyDB, enhancing vector search throughput by up to four times for users of the pgvector extension in PostgreSQL. This improvement is aimed at approximate nearest neighbor searches using HNSW across large datasets. AlloyDB utilizes a columnar engine that allows HNSW indexes to reside in memory, improving throughput and recall metrics. In benchmark tests on the GloVe 100 Angular dataset, queries per second increased by approximately 4.2x to 4.9x, with recall improving from about 0.78 to over 0.94 at a throughput of around 350 queries per second. The columnar engine's design bypasses traditional PostgreSQL buffer management bottlenecks, enhancing efficiency during graph traversal. The memory architecture is distinct from basic caching techniques, and the feature requires no changes to application code. Users must enable the columnar engine and index caching flags to utilize this feature. Benchmarks were conducted on an AlloyDB C4A machine with 16 virtual CPUs.
Tech Optimizer
July 12, 2026
Running pgvector on Amazon Aurora PostgreSQL-Compatible Edition offers a vector store with operational capabilities, high availability, and scalability. It is favored for Retrieval Augmented Generation (RAG) workloads transitioning to production, but increased traffic introduces challenges like query latency and memory management. Key operational practices for pgvector workloads include selecting the appropriate index type (HNSW or IVFFlat), establishing a baseline schema, choosing a suitable distance operator, scaling the index through quantization and partitioning, and preparing for churn and observability. The prerequisites for using pgvector include an Aurora PostgreSQL-Compatible cluster with specific PostgreSQL versions and the vector extension enabled. The embedding model used in examples is Amazon Titan Text Embeddings V2, which produces 1024-dimensional embeddings. pgvector supports two Approximate Nearest Neighbor (ANN) index types: HNSW, which is efficient for querying and allows for incremental insertions, and IVFFlat, which is less resource-intensive but requires rebuilding if data changes. There are scenarios where forgoing an index is beneficial, such as small datasets or partitioned datasets requiring 100% recall. A baseline schema for a multi-tenant document store includes creating a table for documents with an embedding vector and establishing indexes for tenant IDs and embeddings using HNSW. The recommended parameters for HNSW include m = 16 and ef_construction = 128. Scaling to millions of vectors involves quantization, tuning HNSW parameters, and partitioning. Aurora Optimized Reads can extend effective cache capacity, and managing index churn is crucial for maintaining performance. Observability metrics include query-level statistics, instance-level metrics, and custom application-defined metrics. To clean up after testing, it is advisable to drop the created indexes and tables, and delete the Aurora PostgreSQL-Compatible cluster and any manual snapshots taken during testing.
Tech Optimizer
June 6, 2026
Microsoft announced the public preview of Azure HorizonDB, a fully managed PostgreSQL-compatible database designed for agentic AI workloads, during Microsoft Build 2026 in San Francisco. HorizonDB features a "database-as-logs" architecture, allowing for sub-millisecond multi-zone commit latency and independent scaling of compute and storage. It incorporates a Rust-based storage engine, native DiskANN vector search, and in-database AI model invocation. Additionally, Microsoft launched Web IQ, a web-grounding API layer integrated into Microsoft Copilot and OpenAI's ChatGPT, which provides passage-level structured evidence objects rather than full documents. Web IQ is model-agnostic and aims to enhance information density and reduce costs. Both services are currently in limited availability, with HorizonDB open for preview signups across five Azure regions.
Tech Optimizer
April 28, 2026
Constructive has released agentic-db, an open-source Postgres database aimed at improving AI agents with features like persistent memory, structured knowledge, and hybrid retrieval. This database allows for efficient searching, filtering, and ranking of information, addressing inefficiencies associated with traditional markdown file storage. Key features of agentic-db include long-term memory, conversation tracking, a versioned registry for skills and tools, rules and policies for governance, task orchestration, and runtime observability. It is delivered as a single installable Postgres schema, indexed for multiple retrieval modes, and supports integration with various AI assistants through generated Agent Skills and CLIs. agentic-db is available under the MIT license for local use, with a cloud offering in development for secure, scalable solutions. Developers can access it on npm and GitHub.
Winsage
April 9, 2026
Windows 11 has faced criticism from users due to controversial Copilot AI features and changes that have compromised functionality, including a redesigned Start menu, a fragmented settings application, and a slower file explorer. Microsoft is responding to user feedback, with Design Director Diego Baca acknowledging issues with the Start menu's performance and stating that "search performance + predictability" is a focus. Partner Director of Design March Rogers confirmed that they are working on migrating legacy Control Panel features to the modern Settings app while ensuring compatibility with various devices and drivers. Users have mixed reactions, particularly concerned about the potential removal of the Control Panel before the new settings are fully functional. Despite the discontent, Windows remains a reliable experience for many users compared to alternatives like Linux.
Winsage
April 8, 2026
Microsoft has implemented a server-side remedy for an issue affecting the Windows Start Menu search functionality on select Windows 11 23H2 devices, which began impacting users on April 6. The problem was linked to a server-side Bing update aimed at improving search performance. Microsoft has rolled back the problematic Bing update and expects search issues to decrease as the fix is deployed. Users have reported blank search results in the Start Menu, but options remain clickable. Microsoft confirmed that the issue will resolve automatically with the rollout of the fix, provided devices are connected to the internet and Web Search is enabled. Additionally, there have been previous Start Menu-related issues, including crashes and error messages, with Microsoft working on permanent solutions for these problems.
Winsage
February 18, 2026
Microsoft is reportedly planning to reintroduce the ability to relocate and resize the Windows 11 taskbar, a feature that was removed and led to user dissatisfaction. Former Microsoft executive Mikhail Parakhin criticized the removal of the vertical taskbar, stating it enhances productivity. Other former employees, including Andy Young, have also expressed dissatisfaction with Windows 11's design, particularly the Start Menu's performance issues. Microsoft is acknowledging the need to address user concerns and "pain points" within Windows 11 as it considers restoring customization options.
Winsage
December 26, 2025
Windows 11 is updating its File Explorer to improve search efficiency and reduce memory usage during file searches, currently being tested in Windows 11 Build 26220.7523 for Windows Insider participants. The new search functionality eliminates duplicate file indexing operations, resulting in faster searches and lower system resource usage. The File Explorer Search relies on the Windows Search Indexer, which will now avoid redundant indexing, leading to reduced disk I/O, lower CPU cycles, and decreased RAM usage. Additionally, Microsoft is decluttering the context menu by relocating features like “Compress to” and “Copy as path” into a new sub-menu called “Manage file,” or “Other actions” on different machines. These updates are expected to be rolled out by the end of January or in February.
Search