Reputation: 13553
I just started learning redis. Now I am looking for a very simple redis admin ui, to display the content (key-value) in some kind. I have already stored simple strings and also fetched them, but is there no way to display tho whole "database"?
I have found redsmin, but it is still in beta and I have been waiting for over a week to get any invitation.
Upvotes: 0
Views: 438
Reputation: 17480
For start, call KEYS *
to print out all of them.
Next, you can build your own basic viewer pretty much easily. Yes, it could be more sophisticated with many fancy things, but basic viewing of all keys (impractical in production probably but good for dev) would be easy.
Upvotes: 1