Reputation: 2371
Just getting started with redis, and I'm having a hard time managing the redis data. Are there any tools that help give a visualization of my applications redis data?
Upvotes: 7
Views: 6973
Reputation: 31
I think AnotherRedisDesktopManager is a useful tool for managing redis, faster, better and more stable. What's more, it won't crash when loading a large number of keys.
Upvotes: 1
Reputation: 9961
Try Keylord - cross-platform GUI application for manage key-value databases like Redis, LevelDB, etc.
Upvotes: 3
Reputation: 669
You can try FastoRedis site programm - crossplatform Redis GUI client based on redis-cli
.
Upvotes: 0
Reputation: 8490
There is Redis Admin UI / on github, it is .NET based.
I have not tried it myself, but the screenshots and the live demo look promising.
There is also phpRedisAdmin from ErikDubbelboer, which is working according to the poster of this very similar question: phpMyAdmin equivalent to MySQL for Redis?
At my company, when developing in Redis and dealing with a large number of keys, we create and maintain a custom management page while developing. The reason for this is that it allows us to create the best 'custom' representation of the data.
Upvotes: 2
Reputation: 3914
I am working on a tool like that (phpMyRedis), but there are no current working tools like that I know of.
Upvotes: 0