123456789101112131415161718192021222324 |
- spring:
- application:
- name: webchat-search-service
- # elastic search config
- elasticsearch:
- message-index: chat_mess_dev
- rest:
- uris: http://8.140.184.12:9200
- # set redis config
- data:
- redis:
- host: 127.0.0.1
- port: 6379
- database: 6
- jedis:
- timeout: 5000
- pool:
- max-active: 100
- max-wait: -1
- min-idle: 10
- milvus:
- host: 121.4.119.166
- port: 19530
|