Overview
Redis Enterprise is the commercial distribution of Redis, the in-memory data platform that began as a caching key-value store and has expanded to a full multi-model database covering documents (JSON), full-text search, time series, probabilistic data structures, vector similarity, and message streams. Redis 8 (released in 2025) returned the core to an open-source licence (AGPLv3 alongside RSALv2/SSPLv1) and folded the previously separate Stack modules (Search, JSON, Time Series, Bloom) into the core distribution.
Redis Enterprise adds Active-Active geo-replication using conflict-free replicated data types (CRDTs), tiered memory (Auto-Tiering to NVMe and Flash), online cluster recovery, sub-millisecond p99 latency at 200M+ ops/sec on benchmark clusters, and operational features required for regulated environments. The platform competes with managed Redis (ElastiCache, MemoryStore, Azure Cache), document databases (MongoDB, Couchbase), and vector databases (Pinecone, Weaviate). Many production teams use Redis Enterprise as the operational layer for AI applications, with Vector Search increasingly displacing dedicated vector stores.
Key Features
- Sub-millisecond p99 read and write latency with horizontal sharding
- Active-Active geo-replication with CRDTs for multi-Region writes
- Vector Search with HNSW and FLAT indexes for RAG and recommendation
- JSON document storage with JSONPath query and atomic update operations
- Full-text search with stemming, faceting, and aggregations
- Time Series module with downsampling and retention policies
- Probabilistic data structures — Bloom, Cuckoo, Count-min Sketch, Top-K, t-digest
- Redis Streams for ordered append-only logs with consumer groups
- Auto-Tiering — extend memory to NVMe SSD at ~25% the cost of RAM
- Pub/Sub messaging and Keyspace Notifications
- RBAC, TLS, audit log, FIPS-compliant cryptography
- Kubernetes operator and Redis Insight management UI
Pricing
| Edition | Model | Cost |
|---|---|---|
| Redis Cloud Essentials (Free) | Shared | $0 (30 MB, 30 connections, single database) |
| Redis Cloud Essentials | Per database/month | From $5/month (250 MB) to $500+/month |
| Redis Cloud Pro | Per hour, by shard / throughput | From ~$0.881/hour (1 GB, 2,000 ops/sec) |
| Redis Cloud Pro Active-Active | Per hour per Region | Multiplies by number of Regions |
| Redis Enterprise Software (self-managed) | Per shard/year | ~$5,000–10,000/shard/year, annual subscription |
| Redis Enterprise on Marketplace (BYOL/private offer) | Negotiated | Volume-based, often 30–50% off list |
Pricing verified May 2026 from Redis Cloud public pricing pages. Active-Active and multi-zone HA add cost per Region or AZ. Self-managed Enterprise Software pricing requires direct quote and varies by support tier and shard count.
Strengths
- Industry-leading latency — sub-millisecond p99 at very high throughput
- Multi-model — caching, document, search, time series, vector in one platform
- Active-Active with CRDTs is rare and operationally simpler than active-passive failover
- Auto-Tiering reduces TCO for large datasets versus pure-RAM Redis
- Vector Search is mature and integrated with retrieval workflows (LangChain, LlamaIndex)
- Redis 8 licence return to AGPLv3 reduces the licensing concerns of the 2024 SSPL move
Limitations
- Pricing model can be opaque — shard, throughput, and Active-Active multipliers stack
- Memory-first architecture is more expensive per GB than disk-first stores
- Module licence (AGPLv3) restricts commercial redistribution of derivative services
- The 2024 licence change to SSPL caused real ecosystem fork pressure (Valkey)
- Cluster mode imposes restrictions on multi-key operations and Lua scripting