Tech News
← Home  ·  All topics

Vector Search

4 GoKawiil briefs on this topic

Manticore Search adds automatic document chunking to its vector search engine

Manticore Search now supports built-in chunking for embedding-based vector search, letting users add a chunk_strategy option directly to a table's vector column instead of manually splitting long documents before indexing. The database can split text into pieces, embed each chunk, and search across all of them within a single table, eliminating the need for a separate chunking pipeline or secondary table. Five strategies are offered: truncate, mean, fixed, recursive, and sentence, with the latter three requiring a float_vector_array column to store multiple vectors per document.

Antfly rebuilds its search-and-inference database engine from Go into Zig

Antfly, a startup building a document, full-text, vector and graph indexing database, has released version 0.2 of its engine rewritten entirely in Zig with no external dependencies controlling core logic. The original v0.1 engine was built in Go, chosen for its concurrency support and mature Raft implementation, but the team decided to rewrite the system early rather than iterate on it.

IEEE Computer Society Q&A: Gopalan on Adapting Relational Databases for AI Workloads

IEEE Computer Society published an interview with database expert Vinodkrishna Gopalan on how relational databases must evolve to handle AI and machine learning demands. The discussion centers on how AI workloads—marked by large scans, unpredictable queries, vector search, and low-latency inference—differ from traditional transactional database use cases, requiring new approaches to schema design, indexing, and scaling.

New embedded database LatticeDB combines graph, vector and text search in one file

LatticeDB is a new single-file, embedded property-graph database that supports graph traversal, HNSW-based vector similarity search, and BM25 full-text search through one unified query language. It requires no server or configuration, targets single-machine relationship-heavy workloads, and shares its transaction log across graph writes and event streams for durability.