0
나는 텍스트 배열과 이미지 배열을 취한 다음 "트위터"로 교차 제품을 계산하는 "스크램블러"를 만들고 있습니다. 나는이 같은 외모에 대한 걱정 기능 :계산 된 속성에서 모델을 생성하면 메모리가 누출됩니까?
combinations: (->
tweet_texts = @get('tweet_texts')
tweet_images = @get('tweet_images')
# return empty array unless we have texts
return Em.A([]) unless tweet_texts.length
# handle the case when we don't have images
unless tweet_images.length
combinations = tweet_texts.map (text) =>
TwitterPost.create
text : text
newtwork_user : @get('account.twitter_handle')
return Em.A(combinations)
# handle texts and images
combinations = tweet_images.map (image) =>
tweet_texts.map (text) =>
TwitterPost.create
text : text
image : image
network_user : @get('account.twitter_handle')
return Em.A([].concat(combinations...))
).property('[email protected]','[email protected]')
내 걱정은 내가 모델을 많이 만드는거야 내가 정말 엠버의 가비지 수집을 이해하지 못하는 것입니다.
여기에 메모리 누수가 발생할 위험이 있습니까?
감사합니다.