As far as I understood the code base, once the LruCache runs out of spaces, older tiles are unloaded from egui?
Im not sure what exactly happens after tiles are dropped out of the data structure, are they re-requested entirely or loaded from disk?
|
cache: LruCache::new(cache_size), |
It would be beneficial to increase this limit for my use case either way.
As far as I understood the code base, once the LruCache runs out of spaces, older tiles are unloaded from egui?
Im not sure what exactly happens after tiles are dropped out of the data structure, are they re-requested entirely or loaded from disk?
walkers/walkers/src/http_tiles.rs
Line 74 in 839abbf
It would be beneficial to increase this limit for my use case either way.