(count uint64)
| 307 | } |
| 308 | |
| 309 | func (s *QueryStats) AddStoreGatewayTouchedPostings(count uint64) { |
| 310 | if s == nil { |
| 311 | return |
| 312 | } |
| 313 | |
| 314 | atomic.AddUint64(&s.StoreGatewayTouchedPostingsCount, count) |
| 315 | } |
| 316 | |
| 317 | func (s *QueryStats) LoadStoreGatewayTouchedPostings() uint64 { |
| 318 | if s == nil { |
no outgoing calls