VectorAI DB Doesn't Embed Your Text, and That's the Point
Building a small local knowledge base on top of Actian VectorAI DB, the actual challenge wasn't the database. It was easy to accidentally fake seman…
Tech news from the best sources
Building a small local knowledge base on top of Actian VectorAI DB, the actual challenge wasn't the database. It was easy to accidentally fake seman…
Most LlamaIndex setups end up with two separate backends once you go beyond plain vector search: a vector store for VectorStoreIndex , and a separat…
jina-embeddings-v4 is a self-hosted server for the jina-embeddings-v4 embedding model with an OpenAI-compatible /v1/embeddings endpoint. It runs on…
The first three parts of this series covered why production RAG systems fail and how the quality of the data foundation directly affects everything…
This is the data appendix for Posts 1–4 . The narrative and takeaways live in the main posts. This page is pure measurement. Eval set: 22 questions…
Reciprocal rank fusion merges two ranked lists — say, BM25 results and vector-search results over your chargeback cases — into one. It has exactly o…
Whether you are using off-the-shelf AI coding tools like Claude Code and Cursor or building custom autonomous AI agents with TypeScript and LLM APIs…
If you build on the JVM and want to use Qdrant , the official client is io.qdrant:client — and it's built for Java. Every call returns a ListenableF…
Vector databases like Pinecone, Weaviate, and Milvus exist for one job: store embeddings and find the nearest ones to a query vector, fast. ClickHou…
Take the word "king." Your database does not store the word. It stores a vector: a list of 768 numbers that place king at a point in space, where wo…
From "we have vectors" to "this actually scales, and doesn't bankrupt us." The Story Starts: Two Questions in One 👦 Nephew: Uncle, Phase 2 is done.…
Let's be real: our personal medical history is a mess. It’s a chaotic mix of PDF lab results, grainy scans of prescriptions, and cryptic Electronic…
Behind almost every "AI-powered search" and RAG feature sits the same quiet workhorse: similarity search over vectors. If you're building anything t…
In the rush to build AI agents, we defaulted to complex vector databases. But high-traffic platforms are converging on a simpler, more robust founda…
Every review app is a silo. Yelp reviews places, Amazon reviews its own catalog, Letterboxd reviews film. I wanted to build the opposite: one place…
I have helped a number of teams pick a vector database in the last year. The conversation always starts the same way: four logos, one Slack message,…
Transforming language into geometry. Introduction Embeddings are one of the most important building blocks of modern AI applications, yet they're of…
A short learning path from a weekend project: I indexed my personal markdown notes (~800 chunks), tried a few local embedding models, stored the sam…
You've seen the tutorials. Spin up Pinecone, call .upsert() , do a similarity search, ship it. Everyone claps. The demo works. Then you take it to p…
Built a small framework called MilvusLite Kit to make vector search and RAG workflows more configuration-driven and less code-heavy. Instead of writ…
Vector databases are almost always talked about in the context of RAG. Store your documents, embed them, retrieve the relevant chunks at inference t…
There is a design assumption baked into almost every vector database and AI memory implementation that sounds reasonable until you watch it grow nod…
Why Your Vector Database Is Overpriced: Lucene's 32x Compression and Serverless Economics In 2026, the boundary between "search engine" and "AI infr…
The main concept is straightforward: embed text, store the vector, and query it later. The time-consuming part was everything else. I created a memo…
42% of companies are considering moving workloads off the cloud. For AI infrastructure specifically, the reasons are more urgent than cost. The Tren…
You have explained your tech stack to your coding agent four times this month. You mentioned your preferred approach to a problem in January, and yo…
Hello! I'm Satoshi Kaneyasu, DevOps engineer at Serverworks. In this article, I'll introduce the basic concepts and terminology of vector databases…
Now that almost everyone has thought about or is actively integrating AI workflows into their projects, some might ask is this all worth the cost? M…
How We Reduced LLM Costs Without Touching Model Quality One of the fastest ways to destroy an AI system in production is uncontrolled token growth.…
Enterprise RAG — A practitioner's build log | Post 3 of 6 A retrieval pipeline has more design surface than it appears. The technology choices — vec…