Merge pull request #108680 from kidlj/fix_cache_index_comments

make comments of `(c *threadSafeMap) updateIndices` optimization code more accurate
This commit is contained in:
Kubernetes Prow Robot 2022-03-21 20:19:44 -07:00 committed by GitHub
commit 29528a266a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,14 +281,14 @@ func (c *threadSafeMap) updateIndices(oldObj interface{}, newObj interface{}, ke
}
for _, value := range oldIndexValues {
// We optimize for the most common case where index returns a single value.
// We optimize for the most common case where indexFunc returns a single value.
if len(indexValues) == 1 && value == indexValues[0] {
continue
}
c.deleteKeyFromIndex(key, value, index)
}
for _, value := range indexValues {
// We optimize for the most common case where index returns a single value.
// We optimize for the most common case where indexFunc returns a single value.
if len(oldIndexValues) == 1 && value == oldIndexValues[0] {
continue
}