Module redis

Module redis 

Source
Expand description

Redis template collection

This module provides various Redis deployment templates:

  • Basic Redis for simple key-value storage
  • Redis Cluster for sharded deployments (future)
  • Redis Sentinel for high availability (future)
  • Redis Stack with modules (future)
  • Redis Enterprise with management UI (future)

Re-exports§

pub use basic::RedisTemplate;
pub use cluster::ClusterInfo;
pub use cluster::NodeInfo;
pub use cluster::NodeRole;
pub use cluster::RedisClusterConnection;
pub use cluster::RedisClusterTemplate;
pub use sentinel::RedisSentinelTemplate;
pub use sentinel::SentinelConnectionInfo;
pub use sentinel::SentinelInfo;
pub use insight::RedisInsightTemplate;
pub use enterprise::RedisEnterpriseConnectionInfo;
pub use enterprise::RedisEnterpriseTemplate;

Modules§

basic
Basic Redis template for quick Redis container setup
cluster
Redis Cluster template for multi-node Redis setup with sharding and replication
enterprise
Redis Enterprise template for production-grade Redis deployments
insight
RedisInsight template for Redis web UI
sentinel
Redis Sentinel template for high availability setup