PeaDB: Redis-Compatible Database Coded with AI Assistants in C++20

Project Overview
PeaDB is a Redis 7.2.5 drop-in replacement written in modern C++20. The developer "vibe-coded" it during Tết (Lunar New Year) with about one week of part-time work while balancing family commitments.
Key Features
- Speaks RESP2/3 protocol
- Implements approximately 147 Redis commands
- Includes persistence, replication, and cluster functionality
- Goal: behave indistinguishably from Redis while optimizing for multi-core CPUs
Development Tools and Cost
The project used a combination of AI coding assistants:
- Codex (ChatGPT Go plan) - $8/month (free via Vietnam promo)
- GitHub Copilot Pro - $10/month
- Total cost: ~1 month of Codex budget + ½ month of Copilot budget
Models used: Claude Opus 4.6, GPT-5.2, and GPT-codex-5.3. The developer noted that Codex 5.3 feels cheaper and sometimes solves problems Opus doesn't, but using all three models together works best.
Three-Model Workflow
For hard problems, the developer used this approach:
- Ask each model to write opinions/solutions into three separate markdown files
- Ask Claude to verify, merge, point out mistakes, and learn from the other two models
- Implement, test, and iterate
Benchmarks and Performance
Benchmark results show PeaDB performance is "quite close to Redis" according to the developer's comparison report. The developer specifically requests critique of their benchmark methodology, asking for feedback on workload mix, client settings, pipelining, CPU pinning, warmup, latency percentiles, and other factors to ensure honest comparisons.
Repository and Resources
The project is available on GitHub, and the developer has provided a detailed comparison report showing benchmark results against Redis.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code Architecture Analysis from Leaked Source Maps
Analysis of Claude Code's 512,000-line TypeScript codebase reveals a Bun-based runtime with React/Ink CLI, 100+ commands, 38+ tools, and multi-agent coordination. The system uses Zod for validation, OpenTelemetry for telemetry, and includes context compression mechanisms.

Claude Pulse Browser Extension Surfaces Token Counts, Cache Timers, and Rate Limits on Claude.ai
Claude Pulse is a client-side Chrome extension that adds a real-time dashboard to Claude.ai showing per-message token counts, total context usage, prompt cache expiry timer, and rate limit progress bar. Also includes chat export to Markdown.

Marmy: A Self-Hosted Framework for Managing AI Coding Agents Remotely
Marmy is an open-source, MIT-licensed framework built with Claude Code that lets developers manage AI coding agents and tmux sessions from a mobile app. It includes a Rust agent for development machines and a React Native app for remote control.

AskFirst API adds human approval layer for AI agents
AskFirst is a REST API that lets AI agents pause for human approval before taking irreversible actions. It works with local models, hosted APIs, and any framework, providing email notifications, approve/deny options, and audit logs.