Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way to manage redis data

Tags:

redis

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?

like image 515
Matt Avatar asked Jun 30 '11 19:06

Matt


People also ask

How do I permanently store data in Redis?

Redis does provide some mechanism to make the data persistance(permanent). There are three different ways to make Redis persistant: RDB, AOF and SAVE command. RDB Mechanism: RDB makes a copy of all the data in memory and stores them in secondary storage(permanent storage). This happens in a specified interval.

How do I clean up my Redis database?

To clear data of a DCS Redis 4.0 or 5.0 instance, you can run the FLUSHDB or FLUSHALL command in redis-cli, use the data clearing function on the DCS console, or run the FLUSHDB command on Web CLI. To clear data of a Redis Cluster instance, run the FLUSHDB or FLUSHALL command on every shard of the instance.

Can Redis be used as a data store?

Redis can be used with streaming solutions such as Apache Kafka and Amazon Kinesis as an in-memory data store to ingest, process, and analyze real-time data with sub-millisecond latency. Redis is an ideal choice for real-time analytics use cases such as social media analytics, ad targeting, personalization, and IoT.

Is Redis good for long term storage?

The only difference from the redis service is that it is configured to store data permanently rather than toss data out when it runs out of memory (as a cache configuration would do). That also means data stored in Redis is replicated when an environment is branched, just like for MySQL, Elasticsearch, or MongoDB.


1 Answers

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
like image 138
Maxim Avatar answered Sep 27 '22 20:09

Maxim