Tagged articles
3 articles
Page 1 of 1
James' Growth Diary
James' Growth Diary
May 23, 2026 · Artificial Intelligence

Choosing the Right Retrieval Strategy: Full‑Text vs Vector vs Graph Search

This article breaks down the underlying logic, ideal scenarios, benchmark data, decision trees, and real‑world case studies for full‑text (BM25), vector, and graph retrieval, showing why hybrid approaches dominate production while each technique has distinct strengths and trade‑offs.

Full-Text SearchHybrid SearchRAG
0 likes · 25 min read
Choosing the Right Retrieval Strategy: Full‑Text vs Vector vs Graph Search
DataFunTalk
DataFunTalk
Apr 4, 2021 · Fundamentals

Open the Lock Problem – BFS Solution in Java

Given a four‑wheel combination lock with digits 0‑9, the task is to find the minimum number of rotations needed to reach a target combination while avoiding a list of dead‑end states, using a breadth‑first search algorithm illustrated with Java code examples.

BFSJavaLock Problem
0 likes · 7 min read
Open the Lock Problem – BFS Solution in Java