mirror of
https://github.com/kubernetes/client-go.git
synced 2025-09-08 18:39:16 +00:00
Optimized map allocation in Replace methods
Initial allocation of several maps as the sizes are known Signed-off-by: Adrián Orive <adrian.orive.oneca@gmail.com> Kubernetes-commit: 2299f45f52464beff889fce7be1f66642a92b791
This commit is contained in:
committed by
Kubernetes Publisher
parent
045bdd8bd8
commit
d016aa7909
2
tools/cache/store.go
vendored
2
tools/cache/store.go
vendored
@@ -210,7 +210,7 @@ func (c *cache) GetByKey(key string) (item interface{}, exists bool, err error)
|
||||
// 'c' takes ownership of the list, you should not reference the list again
|
||||
// after calling this function.
|
||||
func (c *cache) Replace(list []interface{}, resourceVersion string) error {
|
||||
items := map[string]interface{}{}
|
||||
items := make(map[string]interface{}, len(list))
|
||||
for _, item := range list {
|
||||
key, err := c.keyFunc(item)
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user