Matt
Matt

Reputation: 2371

Best way to manage redis data

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

Answers (5)

kakarot
kakarot

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.

another-redis-desktop-manager-status

Upvotes: 1

Maxim
Maxim

Reputation: 9961

Try Keylord - cross-platform GUI application for manage key-value databases like Redis, LevelDB, etc.

Keylord application for manage Redis database

  • support Redis and LevelDB key-value databases
  • SSH tunnels for Redis connections
  • display keys in flat and hierarchical views
  • can load millions of keys in background (use SCAN* command)
  • can create/read/update/delete keys of different types
  • clear and predictable UI

Upvotes: 3

Topilski Alexandr
Topilski Alexandr

Reputation: 669

You can try FastoRedis site programm - crossplatform Redis GUI client based on redis-cli.

Common screenshot

Upvotes: 0

The Nail
The Nail

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

Colum
Colum

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

Related Questions