'sync=true'在springboot2.0中使用ehcache时是否有效

Does 'sync=true' works when using ehcache in springboot2.0

我在 springboot2.0 中使用 @cacheableEHcache,但我不确定是否支持 sync=true

如何查看?

@Cacheable 允许您指定 sync 属性以 确保只有一个线程正在构建缓存值 .

查询方式:

通过发送两个并行请求访问缓存数据并修改数据。第二个线程应该只获得更新的值。