Introducing Dragonfly Cloud! Learn More

Question: What is Redis Enterprise?

Answer

Redis Enterprise is an advanced, robust version of the open-source, in-memory data structure store, Redis. It is designed to provide enhanced performance, reliability, and flexibility for developers and businesses.

Features

  1. Scalability: Redis Enterprise supports linear scaling, which allows you to increase your throughput at a constant latency rate as your dataset grows.

  2. Active-Active Geo-Distribution: With this feature, you can write to and read from multiple geographical locations simultaneously. It uses CRDTs (Conflict-Free Replicated Data Types) to ensure strong eventual consistency between different instances.

  3. High Availability and Durability: Redis Enterprise provides automated failover and persistence. It ensures that your data remains safe and available even in the event of failures.

  4. Advanced Security: It offers various security features such as encryption, role-based access control, and auditing.

  5. Operational simplicity: Redis Enterprise simplifies the management of larger datasets with features like auto-sharding and rebalancing.

Here's an example of how one would connect to a Redis Enterprise instance using Python:

import redis # Create a connection to the Redis Enterprise server r = redis.Redis( host='hostname', port=6379) # Set a key-value pair r.set('hello', 'world') # Retrieve the value of the key print(r.get('hello')) # Output: 'world'

Remember to replace 'hostname' with your actual Redis Enterprise server address. The default port for Redis is 6379, but this may vary depending on your configuration.

Please note that Redis Enterprise is not free, and it comes with various pricing options according to your needs.

Was this content helpful?

White Paper

Free System Design on AWS E-Book

Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Free System Design on AWS E-Book

Start building today 

Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement.