← heapsort-ai

database

11 items

ARTICLEDEV.to AI·17d ago

qrrot - database with AI

The article details the development of "qrrot," an in-memory database built in Go that integrates a Gemini-based AI assistant for natural language interaction and autonomous query execution. It provides an in-depth overview of the project's architecture, benchmarks, and how the AI functions, also addressing architectural pain points and flaws.

27
ARTICLEDEV.to AI·4/10/2026

How to lookup for usernames with a BILLION users?

O texto aborda o desafio de realizar buscas eficientes de nomes de usuário em sistemas com bilhões de registros, destacando a inadequação de consultas SQL simples para tal escala. São mencionadas técnicas avançadas como Redis Hashmaps, Trie Structures, B+ Trees e Bloom Filters como soluções usadas por grandes empresas, com a promessa de uma análise detalhada em uma postagem futura.

11
ARTICLEDEV.to AI·5/4/2026

Redis Array: The Long Road to a Powerful Data Structure

This article explores the evolution of array-like data handling in Redis, from early string-based workarounds to today's rich, production-ready data structures. It details how Redis's array capabilities developed through pragmatic engineering and community-driven iteration. Ultimately, it offers guidance on best practices and choosing the right Redis data structure for specific use cases.

3
DOCDEV.to AI·5/1/2026

Window Functions: SQL's Most Powerful Feature Nobody Uses

This article introduces SQL Window Functions as a powerful solution for data analysis problems like running totals or ranking within groups, which cannot be solved by `GROUP BY` due to its row-collapsing nature. It emphasizes their ability to compute values for each row based on other rows without losing original data.

3