func (f *countingBloomFilter) indexes(keys []string) []string {
    allIndexes := make([]string, 0, len(keys)*int(f.hashIterations))
    size := uint64(f.size)
    for _, key := range keys {
        h1, h2 := hash([]byte(key))