All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mm.gjm-tool.1.0.1.1.source-code.application-redis.yml Maven / Gradle / Ivy

There is a newer version: 1.0.1.2
Show newest version
spring:
  # redis配置
  redis:
    host: ${REDIS_HOST_NAME:101.42.233.143}
    # Redis服务器连接密码(默认为空)
    password: ${REDIS_PWD:123321}
    # Redis服务器连接端口
    port: 6379
    # Redis数据库索引(默认为0)
    database: ${REDIS_DB_INDEX:5}
    # 连接超时时间(毫秒)
    timeout: 3000ms
    # 连接池最大连接数(使用负值表示没有限制)
    lettuce:
      pool:
        max-idle: 8
        min-idle: 4
        max-active: 8
        max-wait: -1ms
        time-between-eviction-runs: 3000ms
    open: true
    key:
      prefix: ${REDIS_KEY_PREFIX:tp:${spring.profiles.active}:}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy