作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在发出如下请求,但我想知道 downloadOnly 是否首先检查图像的缓存?
FutureTarget<File> future = Glide.with(applicationContext)
.load(yourUrl)
.downloadOnly(500, 500);
File cacheFile = future.get();
我的主要问题是 yourUrl 中的图像已经加载到缓存中,我需要一种同步方式在后台线程中从缓存中检索图像。
上面的代码有效,但我需要知道在downloadOnly之前是否有缓存检查。谢谢。
最佳答案
在为 Glide 开启详细日志记录后,我能够准确地看到调用图像时发生了什么,而 DecodeJob 主要在不到 10 毫秒的时间内从缓存中获取数据,有时它会再次获取数据,不确定从磁盘或通过电线。
所以最终我不得不只检查带有自定义 StreamModelLoader 的缓存,如果尝试通过网络会抛出异常,然后在缓存 MISS 上使用默认流。
private final StreamModelLoader<String> cacheOnlyStreamLoader = new StreamModelLoader<String>() {
@Override
public DataFetcher<InputStream> getResourceFetcher(final String model, int i, int i1) {
return new DataFetcher<InputStream>() {
@Override
public InputStream loadData(Priority priority) throws Exception {
throw new IOException();
}
@Override
public void cleanup() {
}
@Override
public String getId() {
return model;
}
@Override
public void cancel() {
}
};
}
};
FutureTarget<File> future = Glide.with(progressBar.getContext())
.using(cacheOnlyStreamLoader)
.load(url).downloadOnly(width, height);
File cacheFile = null;
try {
cacheFile = future.get();
} catch(Exception ex) {
ex.printStackTrace(); //exception thrown if image not in cache
}
if(cacheFile == null || cacheFile.length() < 1) {
//didn't find the image in cache
future = Glide.with(progressBar.getContext())
.load(url).downloadOnly(width, height);
cacheFile = future.get(3, TimeUnit.SECONDS); //wait 3 seconds to retrieve the image
}
关于android - Glide 图片请求 : Does downloadOnly check the cache before downloading only?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35944284/
我是一名优秀的程序员,十分优秀!