How Can I Browse/View The Values Stored in Redis

NosqlRedis

Nosql Problem Overview


Are there any good browsers/explorer for viewing Redis out there ? Am new to Redis so my expectation is if there is something similar to MongoVUE,Toad or SQLExplorer.

I tried Redis Admin UI from service stack but ran into 500 error when trying on IIS

Nosql Solutions


Solution 1 - Nosql

Redis Commander is great if you're using node.js already.

Super simple to get going with NPM:

npm install -g redis-commander
redis-commander

Then point your browser at the address in the console

Solution 2 - Nosql

If you prefer open-source desktop tools, also take a look on Redis Desktop Manager.

It's a cross-platform open source Redis DB management tool (i.e. Admin GUI)

Disclaimer: I am the creator and maintainer of this application.

redis desktop manager screen

Solution 3 - Nosql

Maybe you could give a try to Redsmin.

It offers:

  • Cross-platform, works everywhere inside a browser.
  • Real-time and historical Monitoring and Alerting features
  • Multiple database management with direct (plain text connection), direct (TLS/SSL connection) or proxied access for local instances behind a firewall.
  • Batch operation over multiple key that match a pattern (delete, rename, duplicate)
  • Value editor
  • Online configuration
  • JavaScript API directly accessible from the browser console for light data processing

Redis JavaScript API

  • Lua Editor

Redis LUA Editor

  • Online terminal with auto-completion and inline-documentation
  • Real-time data-visualization

enter image description here enter image description here

Full disclosure: I founded Redsmin.

https://www.linkedin.com/profile/view?id=AAIAAAD-U- YBJN9lpixm6nxrnAaHQY5DoZ0FcNQ&trk=nav_responsive_tab_profile" width="1" height="1">

Solution 4 - Nosql

I just published rebrow, a web-based Redis browser written in Python. The feature set is limited, but it's free and open, so you might be able to add what you need.

There is a Docker image to get you started quickly.

Solution 5 - Nosql

I really like qredis, it is a Python + Qt graphical interface to explore redis databases that should deserve more popularity IMO.

Solution 6 - Nosql

Definitively have a look at Redis React.

Solution 7 - Nosql

If you're into ruby, there is redis-browser gem.

It's basically a Sinatra application so it can be mounted into any rack-based app, e.g. Ruby on Rails or it can run as standalone.

Disclaimer: I am one of the maintainers of this gem.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionairbossView Question on Stackoverflow
Solution 1 - NosqlUpTheCreekView Answer on Stackoverflow
Solution 2 - NosqluglideView Answer on Stackoverflow
Solution 3 - NosqlFGRibreauView Answer on Stackoverflow
Solution 4 - NosqlMarianView Answer on Stackoverflow
Solution 5 - NosqlmguijarrView Answer on Stackoverflow
Solution 6 - NosqlsongololoView Answer on Stackoverflow
Solution 7 - NosqlMichał SzajbeView Answer on Stackoverflow