Glide disk cache
Disk cache
Disk cache
The implementation through DiskLruCache is similar to the LruCache algorithm. When the cache size will exceed the threshold, the oldest data in the cache will be cleared
DiskLruCache is also implemented internally through LinkedhashMapThe same is created when glide is generated Here we also analyze taking and sav ...
Posted on Mon, 27 Sep 2021 14:28:51 -0400 by vijayanand
Gilde picture request execution process -- into()
Glide's request execution process
To understand the request execution process, we first need to know the following questions
When to build the requestWhen to execute the requestHow to build your requestExecute request
1. Request execution timing & 2. Request build timing
In the source code flow analysis, we mentioned calling into() ...
Posted on Mon, 27 Sep 2021 14:14:40 -0400 by Chris Mayo