15 lines
410 B
JSON
15 lines
410 B
JSON
{
|
|
"CacheConfig": {
|
|
//缓存类型 Memory = 0,Redis = 1
|
|
"type": "Memory",
|
|
//限流缓存类型 Memory = 0,Redis = 1
|
|
"typeRateLimit": "Memory",
|
|
//Redis配置
|
|
"redis": {
|
|
//连接字符串
|
|
"connectionString": "127.0.0.1:6379,password=,defaultDatabase=0",
|
|
//限流连接字符串
|
|
"connectionStringRateLimit": "127.0.0.1:6379,password=,defaultDatabase=0"
|
|
}
|
|
}
|
|
} |