I load some images only from cache, but I noticed, that images are not loaded in parallel, but first one and shortly after that second.
Glide.with(getContext())
.load(url)
.onlyRetrieveFromCache(true)
.into(imageView);
Seems that Glide load images from queue, one by one, not in parallel. How to change this?