Skip to content

tznind/PoshRedisViewer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PoshRedisViewer

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

img.png

It allows you to:

  1. Look for Redis Keys via Scan/Keys (depending on Redis version)
  2. View the type and contents of specified key
  3. Filter keys without requerying them from Redis
  4. Filter results to look for useful information
  5. Execute custom commands
  6. 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

About

A compact redis browser for powershell

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • F# 64.9%
  • PowerShell 35.1%