第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 spring boot 中重新加載/刷新緩存

在 spring boot 中重新加載/刷新緩存

開(kāi)滿天機(jī) 2023-01-05 17:23:59
我正在使用 Spring Boot 并使用 Ehcache 進(jìn)行緩存。到目前為止一切正常。但是現(xiàn)在我必須重新加載/刷新,所以我該怎么做才能使我的應(yīng)用程序不會(huì)有任何停機(jī)時(shí)間。我在 Spring Ehcache 中嘗試了很多方法,但它沒(méi)有用,否則必須編寫(xiě)調(diào)度程序并重新加載數(shù)據(jù)。@Override@Cacheable(value="partTypeCache", key="#partKey")public List<PartType> loadPartType(String partKey) throws CustomException {        return productIdentityDao.loadPartType();}
查看完整描述

4 回答

?
慕少森

TA貢獻(xiàn)2019條經(jīng)驗(yàn) 獲得超9個(gè)贊

顯然關(guān)于你的問(wèn)題的所有評(píng)論都是正確的。你應(yīng)該使用 CacheEvict。我在這里找到了解決方案:https ://www.baeldung.com/spring-boot-evict-cache ,它看起來(lái)像這樣:


您所要做的就是創(chuàng)建名為例如 CacheService 的類,并創(chuàng)建將驅(qū)逐您擁有的所有緩存對(duì)象的方法。然后你注釋該方法 @Scheduled 并輸入你的間隔率。


@Service

public class CacheService {


    @Autowired

    CacheManager cacheManager;


    public void evictAllCaches() {

        cacheManager.getCacheNames().stream()

          .forEach(cacheName -> cacheManager.getCache(cacheName).clear());

    }


    @Scheduled(fixedRate = 6000)

    public void evictAllcachesAtIntervals() {

        evictAllCaches();

    }


}


查看完整回答
反對(duì) 回復(fù) 2023-01-05
?
慕仙森

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊

許多人建議使用的選項(xiàng)@CacheEvict是正確的。此外,為確保您的緩存(近)始終加載最新數(shù)據(jù),即使數(shù)據(jù)庫(kù)中的數(shù)據(jù)更新超出了您正在運(yùn)行的應(yīng)用程序的范圍,您也需要定期重新加載整個(gè)數(shù)據(jù)集,間隔時(shí)間與您應(yīng)用程序的 SLA 相匹配。在上面建議的解決方案中,添加邏輯以重新加載所有數(shù)據(jù),如下所示:


@Service

public class CacheService {


    @Autowired

    CacheManager cacheManager;


    public void refreshAllCaches() {

        cacheManager.getCacheNames().stream()

          .forEach(cacheName -> cacheManager.getCache(cacheName).clear());

        // reload whole dataset here, dummy example here:

        dataRepository.findAll().forEach(a -> cacheManager.getCache("cache-name")).put(a.getKey(), a));

    }


    @Scheduled(fixedRate = 6000)

    public void refreshAllcachesAtIntervals() {

        refreshAllCaches();

    }


}


查看完整回答
反對(duì) 回復(fù) 2023-01-05
?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試這樣的事情,正如評(píng)論中提到的那樣:


    @Caching(evict={@CacheEvict(value="partTypeCache", key="#partKey")})

    public boolean deletePartType(String partKey) { 

      //when this method is invoked the cache is evicted for the requested key

    }


查看完整回答
反對(duì) 回復(fù) 2023-01-05
?
精慕HU

TA貢獻(xiàn)1845條經(jīng)驗(yàn) 獲得超8個(gè)贊

除了上述答案外,您還可以在調(diào)度程序中使用 cron,這樣可以提供更大的靈活性。您可以讓調(diào)度程序每天、每周、每年、每天中午 12 點(diǎn)等運(yùn)行,而無(wú)需編寫(xiě)大量代碼。


@Service 公共類 CacheService {


@Autowired

CacheManager cacheManager;


public void evictAllCaches() {

    cacheManager.getCacheNames().stream()

      .forEach(cacheName -> cacheManager.getCache(cacheName).clear());

}


@Scheduled(cron = "@weekly")

public void evictAllcachesAtIntervals() {

    evictAllCaches();

}

}


查看完整回答
反對(duì) 回復(fù) 2023-01-05
  • 4 回答
  • 0 關(guān)注
  • 396 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)