Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 508 Bytes

File metadata and controls

26 lines (15 loc) · 508 Bytes

Redis Cluster As Distributed Cache

This is a POC to show how to use Redis Cache Cluster as Distributed Cache

Installation

docker compose up -d

Redis

redis-cluster is only for creating cluster, after creation the container ends, but docker will try to restart, you can neglect it. We can check cluster has been created or not, by executing below commands

redis-cli

CLUSTER NODES

KEYS *

System Design

Screenshot