Performance in Image loading

I have this game in which I load the same image hundreds of times.
I use display.newImageRect

My question is, is the image loaded from memory each time I call newImageRect, or Corona takes a backup in cache or something like that to improve performance?

Must I manually do something for better performance?

Thanks [import]uid: 64174 topic_id: 14777 reply_id: 314777[/import]

@sateesh,
I *think* you have to do nothing much really, as CoronaSDK does take care of that in the background. one thing that you can do is try to keep all your references local to that image.

cheers,

?:slight_smile: [import]uid: 3826 topic_id: 14777 reply_id: 54645[/import]

corona caches the image. if it is the same image you are trying to load over and over it only loads it once.

.c
[import]uid: 24 topic_id: 14777 reply_id: 54667[/import]

All right!! Thanks a lot! :slight_smile: [import]uid: 64174 topic_id: 14777 reply_id: 54760[/import]