I have an image identify by specific URL, to get this image the request URL need timestamp and signature params (signature base on other params). The URL will be change every time client request because it depends on timestamp and signature. So when using Glide to load image as below:
Glide.with(mContext).load(url).into(imageView);
The problem is, with the same image but it loads many times and cache over and over (because of different url)
I want to build a cache wrapper to override equals method of Cache Key but I don't know how to start with Glide
I'm very grateful, if anyone could help
Thanks