A compact redis browser for powershell powered by https://github.com/StackExchange/StackExchange.Redis and https://github.com/migueldeicaza/gui.cs
https://www.powershellgallery.com/packages/PoshRedisViewerModule
It allows you to:
- Look for Redis Keys via Scan/Keys (depending on Redis version)
- View the type and contents of specified key
- Filter keys without requerying them from Redis
- Filter results to look for useful information
- Execute custom commands
- Select DB index
Copy and Paste is allowed:
- Windows: Ctrl+C | Ctrl+V
- Linux: Ctrl+Y | Ctrl+V
- Keys and Results list views support copying by right-clicking on them
- In case when OS clipboard (clip/xclip) is not available, pasting from internal mini-clipboard is available with Ctrl+B combination
Query, command and filter execution require "Enter" key press.
Also, keys and commands support history mode using CursorUp and CursorDown keys.
Powershell module exports "Get-RedisViewer" command:
- [0, Mandatory] ConnectionString
- [Optional] User
- [Optional] Password
Example:
Install-Module -Name PoshRedisViewerModule
Import-Module -Name PoshRedisViewerModule
then
Get-RedisViewer "localhost:6379"
or
Get-RedisViewer "localhost:6379" -User me -Password myPassword
TODO:
- Tabs/add to favorites
- Results filter history
- Quick commands to change/set values