Change default port for redis to 6380

Also mention the default in config.
This commit is contained in:
Markus Frosch 2019-11-20 16:40:16 +01:00 committed by Noah Hilverling
parent 9f18cd1261
commit 92cd0e3b94
2 changed files with 2 additions and 1 deletions

View file

@ -25,7 +25,7 @@ type RedisInfo struct {
}
var redisInfo = &RedisInfo{
Port: "6379",
Port: "6380",
PoolSize: 64,
}

View file

@ -1,5 +1,6 @@
[redis]
host="127.0.0.1"
;port=6380
[mysql]
host="127.0.0.1"