android - Confusion with .cacheInMemory() vs .cacheOnDisc() in Universal Image Loader -
i using .cacheondisc() method storing images in cache memory (default method-unlimited extrenal storage).should enable cacheinmemory app?what r effects if dont use cacheinmemory option?
a memory cache caches images in memory (ram), i.e. not have load , decode image internal storage because rather slow. should imo use memory cache.
the effect of not using memory cache can - depending on implementation - scrolling through lists of images either stuttering or slower necessary.
disk (e.g. sd card) cache makes sense if images downloaded internets , don't want re-download them each time app starts again. local storage faster internets still slower memory.
Comments
Post a Comment