redis

Redis

Key-value instances via redis:// — keys, TTLs, and a command lab.

KVredis://:password@host:6379/0

The story

These pages use illustrative scenarios (sample names and timelines) to explain real Nexoxa Bridge features. Connection URLs, sidebar panels, and vault behavior match the product; story details are teaching examples, not customer case studies.

Session store, rate limiter, feature flags — Redis sits behind every API Priya ships. She used to ssh in and run redis-cli -a $REDIS_PASSWORD dozens of times a day to check TTLs and flush bad keys during deploys.

Priya saved redis://cache-prod and redis://cache-staging. Keys list with namespaces visible; TTLs show before memory alerts; commands run in a lab tab beside postgres:// without a separate terminal. Local dev uses redis://localhost:6379/0 with no password — same UI, lighter URL.

Cache debugging should take seconds, not a SSH hop and a CLI cheat sheet.

Redis

Connection URL

Scheme: redis://

Parameters

Redis (password)stringvaultrequired

redis://:password@host:6379/0

Redis (no password)stringvaultrequired

redis://host:6379/0

Paste the URL in Nexoxa Bridge → New connection. Save a human-readable name — MCP references that name, not the raw URL with embedded passwords.

Step 1

Key browser

During a deploy Priya scans session:* keys, spots thousands with TTL -1 (no expiry), and traces them to a bad deploy flag. She deletes the namespace subset from the UI and watches memory drop on Pulse.

Database index /0 in the URL path selects the logical Redis DB.

Key listing with pattern filters. TTL and type inspection. redis://:password@host:6379/0 for auth; redis://host:6379/0 for local. Password optional on dev instances.

Key browser

Step 2

Command lab

Priya runs HGETALL on a hot hash, then GET on a feature flag key, then a custom Lua-free debug sequence — formatted output, copy button, no ANSI noise.

Command lab sits next to SQL tabs when debugging cross-store bugs.

Redis command execution with structured rendering. Supports authenticated and open local instances. Saved connection names for MCP automation.

Command lab

Next

Explore the full feature guide: Redis guide

Ask a question… Ctrl+I