Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > j_sakamoto > no-server-no-backend-just-blazor-webassembly-doing-semantic-search-bl4

No Server, No Backend, Just Blazor WebAssembly Doing Semantic Search

1+ hour, 3+ min ago   (1050+ words) 🚀 Semantic search on GitHub Pages with zero backend I recently added semantic search to... Tagged with blazor, webdev, embedding, dotnet....

Medium
medium.com > @ArkProtocol1 > we-deleted-our-vector-database-pgvector-handled-40m-embeddings-fine-799da66033be

We Deleted Our Vector Database. pgvector Handled 40M Embeddings Fine

1+ hour, 42+ min ago   (35+ words) Eleven invoices, four thousand dollars a month, and a sync worker that used to wake me up in the middle of the night. We were …...

DEV Community
dev.to > apexgridtech > data-substrate-versus-vector-db-rag-24e5

Data Substrate Versus Vector Db Rag

9+ hour, 58+ min ago   (1246+ words) This week’s headlines highlight the rapid evolution of AI in China, with models like Qwen and DeepSeek pushing the frontier of capability. But as these models grow more sophisticated, the conversation around how data is stored, queried, and used as…...

DEV Community
dev.to > saaro_net > agentic-rag-2026-when-the-ai-decides-how-it-searches-9ck

Agentic RAG 2026: When the AI Decides How It Searches

13+ hour, 11+ min ago   (274+ words) Production systems standardly use LangGraph as the orchestration framework for this, supplemented by LlamaIndex for the retrieval layer. LangGraph's checkpointing makes every step of the agentic loop traceable, pausable (for human approvals), and repeatable – an essential property for compliance and…...

Medium
medium.com > @kuriankevin.dev > vector-store-how-similarity-becomes-something-you-can-actually-search-37462b643553

Vector Store: How Similarity Becomes Something You Can Actually Search

16+ hour, 46+ min ago   (290+ words) A beginner’s guide to how vector stores make embeddings searchable while preserving their connection to the passages and …...

DEV Community
dev.to > gouranga-das-khulna > distributed-locks-4148

Distributed Locks

20+ hour, 59+ min ago   (110+ words) One-liner: A distributed lock ensures that only one node in a cluster can perform a critical operation at a time — preventing race conditions across services. In a single-server world, a mutex or semaphore handles concurrency. But in distributed systems: Classic…...

Medium
medium.com > @alakov.ilia > explain-describes-a-query-production-is-everything-else-thats-running-6b307b63c330

EXPLAIN Describes a Query. Production Is Everything Else That’s Running.

20+ hour, 47+ min ago   (1398+ words) A while back I wrote about migrating a terabyte of banking data from Oracle to PostgreSQL with no downtime. The part people …...

Medium
medium.com > @harshithgowdakt > vanilla-postgresql-vs-amazon-aurora-postgresql-7d383e80c68e

Vanilla PostgreSQL vs Amazon Aurora PostgreSQL

1+ day, 2+ hour ago   (1187+ words) At the application level, Amazon Aurora PostgreSQL looks like PostgreSQL. You connect with PostgreSQL drivers, run SQL, use transactions, indexes, MVCC. Underneath, it is a different database architecture. One sentence explains most of the difference: Vanilla PostgreSQL couples the database engine…...

DEV Community
dev.to > numb_code_07 > why-timestamps-lie-in-distributed-systems-and-how-logical-clocks-fix-it-k5f

Why Timestamps Lie in Distributed Systems (and How Logical Clocks Fix It)

1+ day, 8+ hour ago   (476+ words) There's a line of code in almost every service that stores replicated data: def resolve(incoming,... Tagged with distributedsystems, backend, systemdesign, database....

DEV Community
dev.to > yuan_ming_3549dae7e400994 > your-login-tests-are-green-what-did-cursorexecute-actually-receive-5a92

Your Login Tests Are Green. What Did cursor.execute Actually Receive?

1+ day, 11+ hour ago   (525+ words) A reader on my earlier Dev.to post made the useful point directly: Assert that the query is parameterized before it reaches cursor.execute. That sounds simple. It also exposes a blind spot in many test suites. A response assertion…...