Overview
Redis is an open-source in-memory data structure store that can be used as a database, cache, and message broker. This article introduces Redis core features and practical applications.
1. Installation and Configuration
1.1 Installing with Docker
# Pull Redis image
docker pull redis:latest
# Start container
docker run -d \
--name redis \
-p 6379:6379 \
-v /path/to/data:/data \
redis:latest
5/1/24About 4 min