Key Concepts
Key
TTL
Namespace
user:123:profile). The browser displays these as folders.Pattern
cache:* matches all cache keys).Required Permissions
Supported Key Types
How to Browse Keys
Select Connection
Select Database
Navigate Tree
Select Key
How to Create a Key
Click Add Key
Choose Creation Method
- Templates: Pre-configured key templates for common patterns
- Manual: Build the key from scratch
- Import: Paste JSON data to create a key
Enter Key Name
cache:user:123).Select Data Type
Enter Value
Set TTL (Optional)
Create
Key Name Rules
How to View Key Details
Select a Key
View Details
View Value
How to Edit a String Key
Select the Key
Edit Value
Save
How to Edit a Hash Key
Select the Hash
Edit Field
Add Field
Delete Field
How to Edit a List Key
Select the List
Push Item
Edit Item
Remove Item
How to Edit a Set Key
Select the Set
Add Member
Remove Member
How to Edit a Sorted Set Key
Select the Sorted Set
Add Member
Remove Member
How to Rename a Key
Select the Key
Click Rename
Enter New Name
Confirm
How to Set TTL
Select the Key
Click Set TTL
Choose Duration
Apply
TTL Options
How to Delete a Key
Select the Key
Click Delete
Confirm
How to Bulk Delete Keys
Bulk delete allows you to remove multiple keys matching a pattern.Click Bulk Delete
Choose Method
- Quick Actions: Pre-defined cleanup patterns
- Pattern: Enter a custom wildcard pattern
Enter Pattern
cache:*matches all keys starting withcache:*:tempmatches all keys ending with:tempsession:*:datamatches keys with this pattern
Preview Matches
Select Keys
Type Confirmation
Execute
Pattern Syntax
How to Delete Selected Keys from Tree
Select Multiple Keys
Click Delete Selected
Confirm
Key Templates
When creating keys, templates provide pre-configured structures:Troubleshooting
Key not appearing after creation
Key not appearing after creation
- Click the refresh button to reload the key list
- Verify you’re viewing the correct database
- Check if the key has a very short TTL and expired
Cannot edit key value
Cannot edit key value
- You need write permission
- The key type may not support the operation
- Check if another process is modifying the key
Key shows wrong type
Key shows wrong type
- Redis keys have a fixed type once created
- To change type, delete and recreate the key
- Verify you’re looking at the correct key
Bulk delete matched too many keys
Bulk delete matched too many keys
- Always preview matches before deleting
- Use more specific patterns
- Use the checkbox selection to exclude keys
Cannot delete key
Cannot delete key
- You need delete permission
- The key may have been deleted by another process
- Check for connection issues
Key value appears truncated
Key value appears truncated
- Very large values may be truncated in the UI
- Use Redis CLI for viewing complete large values
- Lists and sets are paginated
FAQ
What is the maximum key size?
What is the maximum key size?
What is the maximum value size?
What is the maximum value size?
Can I search for keys by value?
Can I search for keys by value?
What happens when TTL expires?
What happens when TTL expires?
Can I copy a key to another database?
Can I copy a key to another database?
COPY command (Redis 6.2+) or DUMP/RESTORE for cross-database key copying.What is key encoding?
What is key encoding?
How are keys organized in the tree?
How are keys organized in the tree?
:) separator to create a folder hierarchy. user:123:profile appears under user > 123 > profile.What's the difference between List push left vs right?
What's the difference between List push left vs right?
LPUSH) adds to the beginning; push right (RPUSH) adds to the end. Use left for stack behavior, right for queue behavior.Best Practices
Naming Conventions
Use consistent, hierarchical naming:TTL Management
- Always set TTL on cache keys to prevent unbounded growth
- Use appropriate durations: sessions (hours), cache (minutes to days)
- Monitor keys without TTL to prevent memory issues
Key Organization
- Keep namespaces shallow (2-3 levels)
- Use consistent separators (colon recommended)
- Avoid spaces and special characters in key names
- Consider key length impact on memory
Bulk Operations
- Always preview before bulk delete
- Use specific patterns to avoid accidental deletions
- Test patterns on non-production databases first
- Consider impact on running applications