123456789101112131415161718192021222324252627282930 |
- spring:
- redis:
- database: 12
- host: 192.168.2.237 # Redis服务器地址
- port: 63791 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
- password: emrais # Redis服务器连接密码(默认为空)
- jedis:
- pool:
- max-active: 8 # 连接池最大连接数(使用负值表示没有限制)
- max-idle: 5 # 连接池中的最大空闲连接
- max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
- min-idle: 0 # 连接池中的最小空闲连接
- timeout: 20000 # 连接超时时间(毫秒)
- swagger.show: false
- CRF:
- url: http://192.168.2.234:3457/api/mr_info_ex/entity_predict
- Similarity:
- url: http://192.168.2.234:3456/api/mr_info_ex/similarity
- NewSimilarity:
- url: http://192.168.2.234:23232/api/similarity
- NewBatchSimilarity:
- url: http://192.168.2.234:23232/api/similarity_batch
- ChiefPresentSimilarity:
- url: http://192.168.2.234:3456/api/mr_info_ex/chief_present_similarity
|