国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

淺談Glide緩存key的問題

2019-12-12 00:59:52
字體:
來源:轉載
供稿:網友

最近項目里面有個地方是在前面用glide加載圖片后,后面再另外一個地方加載相同圖片時沒有復用glide的緩存,而是自己另外又重新緩存了一套。

查找后發現問題是glide緩存的key不一致的問題。

從key的生成可以看到和很多參數有關,逐一排查后,發現了width和height還有id不一樣。這3個是項目外面傳進來的。

EngineKey key = keyFactory.buildKey(id, signature, width, height, loadProvider.getCacheDecoder(),        loadProvider.getSourceDecoder(), transformation, loadProvider.getEncoder(),        transcoder, loadProvider.getSourceEncoder());

key的作用大概是通過下面三步里面去找數據

如果都為null,就會進入函數最后邊的開線程去decode(相當于緩存沒找到,準備重新加載數據吧)

    EngineJob engineJob = engineJobFactory.build(key, isMemoryCacheable);    DecodeJob<T, Z, R> decodeJob = new DecodeJob<T, Z, R>(key, width, height, fetcher, loadProvider, transformation,        transcoder, diskCacheProvider, diskCacheStrategy, priority);    EngineRunnable runnable = new EngineRunnable(engineJob, decodeJob, priority);    jobs.put(key, engineJob);    engineJob.addCallback(cb);    engineJob.start(runnable);

進入EngineRunnable的run方法看

 resource = decode();private Resource<?> decode() throws Exception {    if (isDecodingFromCache()) {      return decodeFromCache();    } else {      return decodeFromSource();    }  }

其中loadCache還是loadFromSource的條件

  private boolean isDecodingFromCache() {    return stage == Stage.CACHE;  }

默認stage會進去,走到decodeFromCache(),由于cache里沒有,返回null到run方法里面觸發加載失敗的回調

 if (resource == null) {      onLoadFailed(exception);    } else {      onLoadComplete(resource);    }

在回調中重新提交一個runnable,改變stage,下一次run執行時,stage==source,就不會去loadCache,而是loadSource。(開線程加載大概流程感覺就像是默認先去緩存中找,沒找到就重新加載)

private void onLoadFailed(Exception e) {    if (isDecodingFromCache()) {      stage = Stage.SOURCE;      manager.submitForSource(this);    } else {      manager.onException(e);    }  }

loadSource會一路走到

 private Resource<T> decodeFromSourceData(A data) throws IOException {    final Resource<T> decoded;    if (diskCacheStrategy.cacheSource()) {      decoded = cacheAndDecodeSourceData(data);    } else {      long startTime = LogTime.getLogTime();      decoded = loadProvider.getSourceDecoder().decode(data, width, height);      if (Log.isLoggable(TAG, Log.VERBOSE)) {        logWithTimeAndKey("Decoded from source", startTime);      }    }

這里回調的decode就是項目中自己設置的sourceDecoder

項目內的代碼象征性的打碼:


之前id和寬高傳的不一樣,導致key不一樣,然后Glide加載的時候通過key找不到緩存,最后就又回調到項目里面的decode那里來了。

改完后,第一次decode完后,后面用緩存就不會再進入decode了。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 册亨县| 巧家县| 大理市| 苍溪县| 德清县| 固阳县| 塘沽区| 兰坪| 驻马店市| 泌阳县| 聂荣县| 伊金霍洛旗| 广河县| 达孜县| 合江县| 和硕县| 松江区| 嫩江县| 柳林县| 高尔夫| 普兰县| 长泰县| 新乐市| 冕宁县| 永定县| 永川市| 泰州市| 措勤县| 平山县| 海盐县| 永州市| 建瓯市| 光泽县| 龙海市| 化州市| 德惠市| 青海省| 江山市| 永仁县| 临汾市| 玉溪市|