Redis terminal browser written in go, with the use of charmbraclet's bubbletea
Screen.Recording.2023-11-18.at.3.34.12.PM.mov
homebrew:
brew install mat2cc/tap/redis_tui
go:
go install github.com/mat2cc/redis_tui@latest
redis_tui -address localhost:6379 -db 2
Enter your redis://
address, db, etc. and connect to redis.
note: this will also work wish ssh tunneling into a redis database.
Check --help
for more options!
While in the redis_tui, press ?
for movement instructions
redis_tui is powered by the redis SCAN command where we are gathering a variable number of keys per scan (configured by the --scan-size
arguments, with default of 1000). A cursor is kept so that every time the m
key is pressed, more keys will be fetched.
To get the redis type information, we are using a Redis Pipeline which will batch all of the type reqests for each scan into one transaction. This can be disabled by setting --include-types=false
, where type information will only be retrieved when opening the details view for a specific key.
The redis SCAN command can safely be used in production since we can limit the number of keys returned per request. Some things to keep in mind when querying production redis or when performance in a concern:
- reduce the number of elements returned per request with the
--scan-size
argument (them
key can always fetch more keys) - if possible query against a replica redis db
- set the
--include-types=false
to omit the redis pipeline that gathers type data for all keys