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

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -