cacheconfig.json 365 B

12345678910111213
  1. {
  2. //缓存类型 Memory = 0,Redis = 1
  3. "type": "Memory",
  4. //限流缓存类型 Memory = 0,Redis = 1
  5. "typeRateLimit": "Memory",
  6. //Redis配置
  7. "redis": {
  8. //连接字符串
  9. "connectionString": "127.0.0.1:6379,password=,defaultDatabase=2",
  10. //限流连接字符串
  11. "connectionStringRateLimit": "127.0.0.1:6379,password=,defaultDatabase=0"
  12. }
  13. }