Redis
Query Redis using natural language.
Type a question in plain English. Insight O\u2019 Mate generates the Redis command, runs it locally against your Redis instance, and returns the results \u2014 no command syntax to memorise.
How it works
Connect your Redis instance
Paste your Redis connection string (redis:// or rediss://). Insight O’ Mate stores it in your OS keychain — it never leaves your machine.
Ask in plain English
Describe what you want to know. The NLP engine receives only your prompt and key name patterns — never the values stored in your Redis instance.
Get results instantly
The generated Redis command runs locally. Inspect it, tweak it, or copy it into your scripts or applications.
Example queries
Show me all users with a score above 1000 in the leaderboard.
Generated Redis command
# Generated Redis command
ZRANGEBYSCORE leaderboard 1000 +inf WITHSCORESGet the profile for user:42.
Generated Redis command
# Generated Redis command
HGETALL user:42How many keys match the session:* pattern?
Generated Redis command
# Generated Redis command (uses SCAN to avoid blocking)
# Iterate with SCAN for production safety:
SCAN 0 MATCH session:* COUNT 100
# Or for a quick count in dev:
# (note: this blocks on large keyspaces)
# KEYS session:* -> then count resultsPrivacy-first by design
When you ask a question, Insight O' Mate sends only your prompt and your Redis key patterns to the stateless NLP engine — never the actual values stored in your Redis instance. The generated command runs locally. Nothing is stored on our servers.
Read the full security modelFAQ
- Can I query Redis using natural language?
- Yes. Insight O’ Mate translates your plain-English questions into the appropriate Redis commands — HGETALL, ZRANGEBYSCORE, SCAN, SMEMBERS, LRANGE, and more.
- Which Redis data structures does Insight O’ Mate support?
- Strings, Hashes, Lists, Sets, Sorted Sets (ZSETs), and Streams. It generates read commands — GET, HGETALL, LRANGE, SMEMBERS, ZRANGEBYSCORE, XREAD, and SCAN-based key pattern searches.
- Does Insight O’ Mate work with Redis Cloud and self-hosted Redis?
- Yes. It works with Redis Cloud, Redis Enterprise, self-hosted Redis, and Redis-compatible databases like Valkey. Paste your connection string to connect.
- Is my Redis data sent to any server?
- No. Your Redis key values never leave your machine. Only your prompt and key names/patterns are sent to the stateless NLP engine for command generation.
- Will Insight O’ Mate ever write to or delete from my Redis database?
- No. Insight O’ Mate generates read-only Redis commands. It does not generate SET, DEL, FLUSHDB, or any write operations.
Other supported databases
Start querying Redis in plain English
Free plan available. No credit card required.