跳到主要内容

Redis

metadata fields

Example: configs/config_redis.json

FieldRequiredDescription
redisHostYredis server address, such as localhost:6380
redisPasswordYredis Password

How to start Redis

If you want to run the redis demo, you need to start a Redis server with Docker first.

command:

docker pull redis:latest
docker run -itd --name redis-test -p 6380:6379 redis