Is there a good Redis browser? [closed]

2019-01-21 02:01发布

问题:

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

回答1:

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)



回答2:

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



回答3:

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

  • Lua Editor

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

Full disclosure: I founded Redsmin.



回答4:

You can try Keylord - cross-platform administration and development GUI application for key-value databases like Redis, LevelDB, etc.

  • support Redis and LevelDB key-value databases (other key-value engines will be available late)
  • display keys in flat and hierarchical views
  • can load millions of keys asynchronously
  • can create/read/update/delete keys of different types
  • clear and predictable UI

In the next releases we going to support memcached, pub-sub, LUA scripts, etc.



回答5:

Disclaimer: I am the main developper of this tool.

You can try FastoRedis - crossplatform Redis GUI client based on redis-cli. Right now FastoRedis work on most Linux platforms, FreeBSD, Windows and Mac OS X.

It currently has next features:

  • Full Power of Redis Shell
  • Multiple Shells
  • Autocompletion
  • Text/Table/Tree result views
  • Full utf-8 support
  • Cluster connections
  • Sentinel support
  • SSH direct connection
  • Log commands/errors
  • Real-time and historical Monitoring features
  • Has multi-language support

Also you may connect to server without internet, if your redis server placed on visible network segment.



回答6:

Definitively have a look at Redis React.



回答7:

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



回答8:

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.



回答9:

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.



标签: nosql redis