(index int)
| 397 | } |
| 398 | |
| 399 | func bucketName(index int) []byte { |
| 400 | bucket := fmt.Sprintf("%s_%d", bucketPrefix, index) |
| 401 | return []byte(bucket) |
| 402 | } |
| 403 | |
| 404 | func (w *worker) pickKey() []byte { |
| 405 | key := fmt.Sprintf("%s_%d", keyPrefix, mrand.Intn(w.conf.keyCount)) |
no outgoing calls
no test coverage detected