You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The resource cached many resources. Any resource that changes will send a signal, and runners will subscribe to the change message. There are many DeepCopy.
I think that we should provide a global cache resource mapping, and the runners subscribe to the simple change signal. in the HandleSubscription function or Translator gets the resource in the global cache.
for the route status, the DeepCopy uses a huge memory. Can we remove this DeepCopy?for my analysis to compare the status change we just cmp the val.Parents and obj.Status.Parents. or move the data to the global cache?
follow #4181
The
resource
cached many resources. Any resource that changes will send a signal, and runners will subscribe to the change message. There are manyDeepCopy
.I think that we should provide a global cache resource mapping, and the runners subscribe to the simple change signal. in the
HandleSubscription
function orTranslator
gets the resource in the global cache.for the route status, the
DeepCopy
uses a huge memory. Can we remove this DeepCopy?for my analysis to compare the status change we just cmp theval.Parents
andobj.Status.Parents
. or move the data to the global cache?like follows:
DeepCopy
and CMP the status directlyThe text was updated successfully, but these errors were encountered: