我正在使用spring-boot-starter-parent版本2.0.1
这些是application.properties
spring.cache.type=redis
spring.cache.cache-names=edges
spring.cache.redis.cache-null-values=false
spring.cache.redis.time-to-live=60000000
spring.cache.redis.key-prefix=true
spring.redis.host=localhost
spring.redis.port=6379
这是主要课程。
@SpringBootApplication
@EnableAsync
@EnableCaching
public class JanusApplication {
public static void main(String[] args) {
SpringApplication.run(JanusApplication.class, args);
}
}
这是我要缓存其结果的java方法。
@Service
public class GremlinService {
@Cacheable(value = "edges")
public String getEdgeId(long fromId, long toId, String label) {
// basically finds an edge in graph database
}
public Edge createEdge(Vertex from, Vertex to, String label){
String edgeId = getEdgeId((Long) from.id(), (Long) to.id(), label);
if (!Util.isEmpty(edgeId)) {
// if edge created before, use its id to query it again
return getEdgeById(edgeId);
} else {
return createNewEdge((Long) from.id(), (Long) to.id(), label);
}
}
}
我没有其他用于Redis或缓存的配置。尽管它不会引发任何错误,但不会缓存任何内容。我用redis-cli检查。
答案 0 :(得分:2)
为了使缓存起作用,必须从外部类调用要缓存的函数。 这是因为Spring为您的bean创建了一个代理,并在方法调用通过该代理时解决了缓存。 如果函数调用是在内部完成的,则不会传递代理,因此不会应用缓存。
这是解决此问题的另一个答案:Spring cache @Cacheable method ignored when called from within the same class