Programing

Redis에 저장된 값을 찾아 보거나 볼 수있는 방법

crosscheck 2020. 9. 5. 09:00
반응형

Redis에 저장된 값을 찾아 보거나 볼 수있는 방법


Redis를 볼 수있는 좋은 브라우저 / 탐색기가 있습니까? Redis를 처음 접했기 때문에 MongoVUE, Toad 또는 SQLExplorer와 비슷한 것이 있는지 기대합니다.

서비스 스택에서 Redis Admin UI를 시도했지만 IIS에서 시도 할 때 500 오류가 발생했습니다.


오픈 소스 데스크탑 도구 를 선호하는 경우 Redis Desktop Manager도 살펴보십시오 .

크로스 플랫폼 오픈 소스 Redis DB 관리 도구 (예 : Admin GUI)

redis 데스크탑 관리자 화면


이미 node.js를 사용하고 있다면 Redis Commander 가 좋습니다.

NPM을 사용하면 매우 간단합니다.

npm install -g redis-commander
redis-commander

그런 다음 브라우저에서 콘솔의 주소를 가리 킵니다.


아마도 당신은 Redsmin을 시도 할 수 있습니다.

다음을 제공합니다.

  • 크로스 플랫폼, 브라우저 내 모든 곳에서 작동합니다.
  • 실시간 내역 모니터링경고 기능
  • 방화벽 뒤의 로컬 인스턴스에 대한 직접 (일반 텍스트 연결), 직접 (TLS / SSL 연결) 또는 프록시 액세스를 통한 다중 데이터베이스 관리 .
  • 패턴과 일치하는 여러 키에 대한 일괄 작업 (삭제, 이름 바꾸기, 복제)
  • 값 편집기
  • 온라인 구성
  • 가벼운 데이터 처리를 위해 브라우저 콘솔에서 직접 액세스 할 수있는 JavaScript API

Redis JavaScript API

  • Lua 편집기

Redis LUA 편집기

  • 자동 완성 및 인라인 문서화 기능이있는 온라인 터미널
  • 실시간 데이터 시각화

여기에 이미지 설명 입력 여기에 이미지 설명 입력

전체 공개 : 저는 Redsmin을 설립했습니다.


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

Keylord-Redis 및 LevelDB와 같은 키-값 데이터베이스를위한 크로스 플랫폼 GUI 애플리케이션

  • 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.


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.


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.


Definitively have a look at Redis React.


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


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

기본적으로 Sinatra 애플리케이션이므로 Ruby on Rails와 같은 랙 기반 앱에 마운트하거나 독립형으로 실행할 수 있습니다.

면책 조항 : 저는이 gem의 관리자 중 한 명입니다.

참고 URL : https://stackoverflow.com/questions/12292351/how-can-i-browse-view-the-values-stored-in-redis

반응형