全文搜索客户端
| 28 | |
| 29 | //全文搜索客户端 |
| 30 | type ElasticSearchClient struct { |
| 31 | Host string //host |
| 32 | Index string //索引 |
| 33 | Type string //type |
| 34 | On bool //是否启用全文搜索 |
| 35 | Timeout time.Duration //超时时间 |
| 36 | IsRelateSearch bool |
| 37 | } |
| 38 | |
| 39 | //全文搜索 |
| 40 | type ElasticSearchData struct { |
nothing calls this directly
no outgoing calls
no test coverage detected