2

我正在使用 Spring 框架 3.2.4 编写一个 java 项目。

我有许多需要缓存 10 秒的 SQL 查询。

我知道通过@cacheable注释我可以缓存函数结果。

我不明白的是如何只缓存 10 秒。我知道您可以向可缓存注释添加条件,但我很难弄清楚如何为这些条件添加时间。

任何有关该问题的信息将不胜感激。

4

2 回答 2

3

您可以使用调度程序定期调用驱逐缓存的服务方法。

调度器:

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.beans.factory.annotation.Autowired;

public class Scheduler {

        @Autowired
        private SomeService someService;

        @Scheduled(fixedRate = 10000)
        public void evictCaches() {
                someService.evictCaches();
        }
}

服务:

import org.springframework.cache.annotation.CacheEvict;
import org.springframework.transaction.annotation.Transactional;

@Service
@Transactional
public class SomeService {

        @CacheEvict(value = { "cache1", "cache2" }, allEntries = true)
        public void evictAllCaches() {
        }
}
于 2015-06-11T07:01:47.063 回答
2

Spring 没有提供开箱即用的功能,但它支持适配器,您可以使用例如guava 适配器,其中允许配置过期超时。

<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
  <property name="caches">
    <list>
      <bean name="testCache"
            class="org.hypoport.springGuavaCacheAdapter.SpringGuavaCacheAdapter">
        <property name="expireAfterAccessInSeconds" value="10"/>
        <property name="expireAfterWriteInSeconds" value="10"/>
      </bean>
    </list>
  </property>
</bean>
于 2013-11-04T13:38:39.700 回答