Spring Cacheable与CachePut?

时间:2015-02-14 14:06:07

标签: java spring caching

@CachePut or @Cacheable(value = "CustomerCache", key = "#id")
public Customer updateCustomer(Customer customer) {
   sysout("i am inside updateCustomer");
    ....
    return customer;
}

我在CachePut源代码

下找到了以下文档
  

CachePut注释不会导致跳过目标方法 -   相反,它总是导致调用方法及其结果   放入缓存。

这是否意味着如果我使用@Cacheable,updateCustomer方法将只执行一次,结果将在缓存中更新。随后的电话 updateCustomer不会执行updateCustomer,它只会更新缓存。

@CachePut的情况下,updateCustomer方法将在每次调用时执行,结果将在缓存中更新。

我的理解是否正确?

3 个答案:

答案 0 :(得分:13)

我甚至做了一个测试以确定:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = CacheableTest.CacheConfigurations.class)
public class CacheableTest {

    public static class Customer {

        final private String id;
        final private String name;

        public Customer(String id, String name) {
            this.id = id;
            this.name = name;
        }

        public String getId() {
            return id;
        }

        public String getName() {
            return name;
        }

    }

    final public static AtomicInteger cacheableCalled = new AtomicInteger(0);
    final public static AtomicInteger cachePutCalled = new AtomicInteger(0);

    public static class CustomerCachedService {


        @Cacheable("CustomerCache")
        public Customer cacheable(String v) {
            cacheableCalled.incrementAndGet();
            return new Customer(v, "Cacheable " + v);
        }

        @CachePut("CustomerCache")
        public Customer cachePut(String b) {
            cachePutCalled.incrementAndGet();
            return new Customer(b, "Cache put " + b);
        }

    }

    @Configuration
    @EnableCaching()
    public static class CacheConfigurations {

        @Bean
        public CustomerCachedService customerCachedService() {
            return new CustomerCachedService();
        }

        @Bean
        public CacheManager cacheManager() {
            return new GuavaCacheManager("CustomerCache");
        }

    }

    @Autowired
    public CustomerCachedService cachedService;

    @Test
    public void testCacheable() {
        for(int i = 0; i < 1000; i++) {
            cachedService.cacheable("A");
        }
        Assert.assertEquals(cacheableCalled.get(), 1);
    }

    @Test
    public void testCachePut() {
        for(int i = 0; i < 1000; i++) {
            cachedService.cachePut("B");
        }
        Assert.assertEquals(cachePutCalled.get(), 1000);
    }

}

答案 1 :(得分:12)

@CachePut总是让方法执行。如果您希望使用方法执行的结果更新缓存,则通常使用它 示例:如果要更新缓存的陈旧数据,而不是完全清除缓存。

@Cacheable将仅针对给定的cachekey执行一次,后续请求将不会执行该方法,直到缓存过期或刷新为止。

答案 2 :(得分:0)

是的,您绝对正确。

@Cacheput和@Cacheable结合使用。

@Cacheable不会在每次调用时更新缓存。为了删除过时的数据,必须有一个使用@Cacheput的服务来清除过时的数据。

下面的答案是针对那些使用番石榴缓存来构建缓存的人的。 使用番石榴缓存,应用的时间间隔将在一定时间后清空缓存,而@Cacheput则不会。 @Cacheput只会更新过时的值,因此每次都会更新缓存来调用该方法。

希望我的回答能解决您的问题。