Redis Command Reference & Builder
Searchable Redis command reference with an interactive builder. Browse 50+ commands across STRING, LIST, SET, HASH, SORTED SET, KEY, PUB/SUB, STREAM, SERVER, CLUSTER and more. Per-command syntax, args, Big-O complexity, version, safety warnings, and one-click client code in redis-cli / node-redis / redis-py / Jedis. 100% client-side.
About Redis Command Reference & Builder
Searchable Redis command reference with an interactive builder. Browse 50+ commands across STRING, LIST, SET, HASH, SORTED SET, KEY, PUB/SUB, STREAM, SERVER, CLUSTER and more. Per-command syntax, args, Big-O complexity, version, safety warnings, and one-click client code in redis-cli / node-redis / redis-py / Jedis. 100% client-side. Everything runs locally in your browser — your data never leaves your device.
How to use
- Enter your input in the tool above.
- Adjust any options to your preference.
- Use the Copy or Download buttons to save the result.
- Everything happens locally — your data never leaves your browser.
FAQ
How many Redis commands does the reference cover?
56 built-in commands across 14 groups: STRING, LIST, SET, HASH, SORTED SET, KEY, PUB/SUB, STREAM, CONNECTION, SERVER, TRANSACTION, SCRIPTING, HYPERLOGLOG, GEO, CLUSTER. Each entry includes syntax, arguments with types, return type, Big-O complexity, the Redis version it was introduced in, and at least one runnable example.
How does the builder produce client code?
Fill in the argument inputs for any command and the builder emits the exact redis-cli command plus client code in four languages: node-redis (.set/.get style), redis-py (r.set / r.get), Jedis (jedis.set), and the raw RESP-style CLI invocation. Argument types (key, value, integer, pattern, score) are validated before emission.
What safety warnings are surfaced?
Three badge levels: SAFE (read commands like GET/LRANGE), WARNING (potentially slow operations like KEYS, CONFIG, BGSAVE), and DANGEROUS (FLUSHDB, FLUSHALL, SHUTDOWN, KEYS in production). For KEYS specifically we recommend SCAN as the safe alternative and link it directly in the warning text.
Can I search and filter commands?
Yes. Search by name, group, or description (case-insensitive). Filter by group (e.g. show only HASH commands), by safety level (show only dangerous commands), or by minimum Redis version. Counts per group are shown in the filter bar.
What extra features does this tool have versus other Redis references?
(1) 56 built-in commands with full metadata. (2) Fuzzy substring search across name/description/group. (3) Group + safety + version filters with live counts. (4) Interactive argument builder with type-aware placeholders. (5) Four-language client code export (redis-cli, node-redis, redis-py, Jedis). (6) Big-O complexity badge per command. (7) Safety badges (SAFE / WARNING / DANGEROUS) with KEYS→SCAN advice. (8) Deprecated-command flags with replacement pointers. (9) localStorage history (max 20). (10) Shareable URL for the selected command + builder args. (11) Copy / download as .md or .txt. (12) Syntax highlight for the generated CLI command. 100% offline; no Redis instance required.
Related tools
.bashrc / .zshrc Alias & Config Manager
Build shell aliases, functions, exports, and PATH edits in a visual editor, then export a clean, commented .aliases file sourced from both .bashrc and .zshrc — with shadowing detection against shell builtins and common CLI tools, function suggestions when args are needed, starter packs (git, docker, kubectl, navigation, safety, ls, dev, devops, data science), import of existing rc files, dedupe, history (localStorage), and shareable URL. 100% client-side.
Add / Subtract Date Calculator
Add or subtract years, months, weeks, days, hours, minutes and seconds from a starting date/time. Calendar-day or business-day mode with custom weekend + holiday list. Month-end policy toggle (clamp to last day vs overflow). Repeat/series mode (e.g. every 2 weeks x 10) with CSV export. Shareable URL. 100% client-side.
Age Calculator
Calculate exact age from a birth date in calendar years/months/days (no negative-day bugs) plus totals in months/weeks/days/hours/minutes/seconds. Next-birthday countdown with weekday. Feb-29 birthday policy toggle. Milestones (1,000 days, 10,000 days, 1 billion seconds). Zodiac sign + Chinese zodiac. Age gap comparison. Shareable URL. 100% client-side.