Skip to content

Key Browser

The Key Browser provides a powerful interface for exploring and managing keys stored in your Valkey cluster.

Navigate through your keyspace with an intuitive interface that supports filtering, searching, and adding.

Key Browser Interface

  • Tree View: Navigate keys organized by namespace separators (:)
  • List View: View all keys in a flat list format
  • Pagination: Handle large keyspaces efficiently
  • Sorting: Sort by name, type, TTL, or size

Use Redis/Valkey pattern matching syntax:

user:* # All keys starting with "user:"
*:session # All keys ending with ":session"
user:*:cache # Keys matching the pattern

Filter keys by data type:

  • String: Simple key-value pairs
  • Hash: Field-value maps
  • List: Ordered collections
  • Set: Unordered unique collections
  • Sorted Set: Scored, ordered sets
  • Stream: Append-only logs
  • JSON: ReJSON-style document values (requires the JSON module)

View string values with syntax highlighting for JSON, XML, and other formats.

Display all fields and values in a table format.

Browse list elements with pagination.

View all members of a set.

Display entries with their scores.

  • Update Value: Modify existing key values
  • Add Fields: Insert new hash fields or list elements

Click any key to view detailed information:

  • Name: Key Name
  • Type: Data structure type
  • Size: Actual size in bytes
  • TTL: Time to live (if set)
  • Raw View: Display raw value for String types
  • Table View: Hash, List, Set, Stream, and Zset types
  • Json View: JSON data