统计信息结构
| 49 | |
| 50 | //统计信息结构 |
| 51 | type ElasticSearchCount struct { |
| 52 | Shards struct { |
| 53 | Failed int `json:"failed"` |
| 54 | Skipped int `json:"skipped"` |
| 55 | Successful int `json:"successful"` |
| 56 | Total int `json:"total"` |
| 57 | } `json:"_shards"` |
| 58 | Count int `json:"count"` |
| 59 | } |
| 60 | |
| 61 | // 分词 |
| 62 | type Token struct { |
nothing calls this directly
no outgoing calls
no test coverage detected